2021-08-23 09:02:28 +08:00
|
|
|
export default class BasicsPage extends AdminPage<import("../../common/components/Page").IPageAttrs> {
|
|
|
|
constructor();
|
2021-05-13 07:29:46 +08:00
|
|
|
localeOptions: {} | undefined;
|
|
|
|
displayNameOptions: {} | undefined;
|
|
|
|
slugDriverOptions: {} | undefined;
|
|
|
|
/**
|
|
|
|
* Build a list of options for the default homepage. Each option must be an
|
|
|
|
* object with `path` and `label` properties.
|
|
|
|
*
|
|
|
|
* @return {ItemList}
|
|
|
|
* @public
|
|
|
|
*/
|
2021-11-12 04:05:26 +08:00
|
|
|
public homePageItems(): ItemList<any>;
|
2021-05-13 07:29:46 +08:00
|
|
|
}
|
|
|
|
import AdminPage from "./AdminPage";
|
|
|
|
import ItemList from "../../common/utils/ItemList";
|