mirror of
https://github.com/flarum/framework.git
synced 2024-12-15 00:23:38 +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";
|