mirror of
https://github.com/flarum/framework.git
synced 2025-02-13 14:12:45 +08:00
16 lines
489 B
TypeScript
16 lines
489 B
TypeScript
export default class BasicsPage extends AdminPage {
|
|
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
|
|
*/
|
|
public homePageItems(): ItemList;
|
|
}
|
|
import AdminPage from "./AdminPage";
|
|
import ItemList from "../../common/utils/ItemList";
|