File size: 347 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import type { IconProps } from '@adminjs/design-system'
/**
* Representing the page in the sidebar
* @subcategory Frontend
*/
export interface PageJSON {
/**
* Page name
*/
name: string
/**
* Page component. Bundled with {@link ComponentLoader}
*/
component: string
/**
* Page icon
*/
icon?: IconProps['icon']
}
|