Source

admin-bro/src/backend/decorators/page-json.interface.ts

/**
 * Representing the page in the sidebar
 */
export default interface PageJSON {
  /**
   * Page name
   */
  name: string;
  /**
   * Page label
   */
  label: string;
  /**
   * Page component. Bundled with {@link AdminBro.bundle}
   */
  component: string;
}