版博士V2.0程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

7 lignes
539 B

  1. import type { Directive } from 'vue';
  2. import type { SFCInstallWithContext, SFCWithInstall } from './typescript';
  3. export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E | undefined) => SFCWithInstall<T> & E;
  4. export declare const withInstallFunction: <T>(fn: T, name: string) => SFCInstallWithContext<T>;
  5. export declare const withInstallDirective: <T extends Directive<any, any>>(directive: T, name: string) => SFCWithInstall<T>;
  6. export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;