Source

adminjs/src/frontend/interfaces/page-json.interface.ts

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

  /**
   * Page icon
   */
  icon?: string;
}