版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

12 righe
389 B

  1. import type { MaybeRef } from '@vueuse/core';
  2. declare 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 {};