UNPKG

admin-bro

Version:
20 lines (18 loc) 282 B
/** * Representing the page in the sidebar * @subcategory Frontend */ export interface PageJSON { /** * Page name */ name: string; /** * Page component. Bundled with {@link AdminBro.bundle} */ component: string; /** * Page icon */ icon?: string; }