mirror of
https://github.com/flarum/framework.git
synced 2024-12-14 08:03:37 +08:00
6defca5a6d
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
17 lines
559 B
TypeScript
17 lines
559 B
TypeScript
export default class BasicsPage extends AdminPage<import("../../common/components/Page").IPageAttrs> {
|
|
constructor();
|
|
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";
|