UNPKG

@insightphp/inertia-view

Version:

View abstraction layer for building architectured Inertia applications.

11 lines (10 loc) 356 B
import type { App } from "vue"; import type { ComponentMap } from "./contracts"; export interface PluginOptions { components?: Record<string, Array<ComponentMap> | ComponentMap>; pages?: Record<string, Array<ComponentMap> | ComponentMap>; } declare const _default: { install(app: App, options?: PluginOptions): any; }; export default _default;