UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

31 lines (28 loc) 646 B
/** * * [Live Demo](https://primevue.org/) * * @module basecomponent * */ export interface ComponentHooks { onBeforeCreate?(): void; onCreated?(): void; onBeforeMount?(): void; onMounted?(): void; onBeforeUpdate?(): void; onUpdated?(): void; onBeforeUnmount?(): void; onUnmounted?(): void; } export interface BaseComponentPassThroughOptions { hooks?: ComponentHooks; } /** * @todo Update all d.ts with it. */ export interface BaseComponentPassThroughMethodOptions<I = any, P = any, S = any> { instance?: I | undefined | null; props?: P | undefined | null; state?: S | undefined | null; }