You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
341 B
5 lines
341 B
import type { SFCWithInstall } from './types';
|
|
export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E | undefined) => SFCWithInstall<T> & E;
|
|
export declare const withInstallFunction: <T>(fn: T, name: string) => SFCWithInstall<T>;
|
|
export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;
|