mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
5f110f73e7
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
17 lines
564 B
TypeScript
17 lines
564 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<any>;
|
|
}
|
|
import AdminPage from "./AdminPage";
|
|
import ItemList from "../../common/utils/ItemList";
|