UNPKG

@insightphp/inertia-view

Version:

View abstraction layer for building architectured Inertia applications.

8 lines (7 loc) 243 B
export declare type Component<T = object> = T & { _component: { name: string; }; }; export declare type ComponentDef = Promise<any> | (() => Promise<any>) | any; export declare type ComponentMap = Record<string, ComponentDef>;