7035ab485f48f0a00d9de9ccd0486c53608e4fd8d61ec7073414f5769980ed2a436436844c7e19dbffaa27bb1d82e00382380f33bbd1261c89151cd9be57da 517 B

123456
  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) => SFCWithInstall<T> & E;
  4. export declare const withInstallFunction: <T>(fn: T, name: string) => SFCInstallWithContext<T>;
  5. export declare const withInstallDirective: <T extends Directive>(directive: T, name: string) => SFCWithInstall<T>;
  6. export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;