agile-core
Version:
Agile Core - A powerful component based micro front-end framework
28 lines • 766 B
TypeScript
export interface Component {
name?: string;
data?: () => Record<string, any>;
props?: string[] | Record<string, any>;
computed?: Record<string, any>;
methods?: Record<string, Function>;
watch?: Record<string, any>;
beforeCreate?(): void;
created?(): void;
beforeMount?(): void;
mounted?(): void;
beforeUpdate?(): void;
updated?(): void;
beforeUnmount?(): void;
unmounted?(): void;
activated?(): void;
deactivated?(): void;
components?: Record<string, any>;
directives?: Record<string, any>;
filters?: Record<string, any>;
mixins?: any[];
extends?: any;
template?: string;
render?: Function;
auiInit?(): void;
[key: string]: any;
}
//# sourceMappingURL=types.d.ts.map