Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
347 Bytes
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']
}