vue-facing-decorator
Version:
Vue typescript class and decorator based component.
30 lines • 1.26 kB
TypeScript
import { type ComponentCustomOptions, type MethodOptions } from 'vue';
import type { SetupContext } from 'vue';
import type { VueCons } from './index';
export type Cons = VueCons;
type SetupFunction<T> = (this: void, props: Readonly<any>, ctx: SetupContext<any>) => T | Promise<T>;
export type OptionSetupFunction = SetupFunction<any>;
export type ComponentSetupFunction = SetupFunction<Record<string, any>>;
declare function ComponentOption(cons: Cons, extend?: any): any;
type ComponentOption = {
name?: string;
emits?: string[];
provide?: Record<string, any> | Function;
components?: Record<string, any>;
directives?: Record<string, any>;
inheritAttrs?: boolean;
expose?: string[];
render?: Function;
modifier?: (raw: any) => any;
options?: ComponentCustomOptions & Record<string, any>;
template?: string;
mixins?: any[];
setup?: ComponentSetupFunction;
methods?: MethodOptions;
};
type ComponentConsOption = Cons | ComponentOption;
export declare function ComponentBase(arg: ComponentConsOption, ctx?: ClassDecoratorContext): any;
export declare const Component: typeof ComponentBase;
export declare function toNative<T extends Cons>(cons: T): T;
export {};
//# sourceMappingURL=component.d.ts.map