5b9ca638668ce3fa28a18302b14dcd45dccc977665e0368214dd608d156fe3ef5f7a5f9cc9570ed8aff9251da7700e64706052b4dec483343d84819d9e671e 381 B

1234567891011
  1. import type { MaybeRef } from '@vueuse/core';
  2. type DeprecationParam = {
  3. from: string;
  4. replacement: string;
  5. scope: string;
  6. version: string;
  7. ref: string;
  8. type?: 'API' | 'Attribute' | 'Event' | 'Slot';
  9. };
  10. export declare const useDeprecated: ({ from, replacement, scope, version, ref, type }: DeprecationParam, condition: MaybeRef<boolean>) => void;
  11. export {};