mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
6defca5a6d
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
23 lines
640 B
TypeScript
23 lines
640 B
TypeScript
export default class ExtensionPage extends AdminPage<import("../../common/components/Page").IPageAttrs> {
|
|
constructor();
|
|
extension: any;
|
|
changingState: boolean | undefined;
|
|
infoFields: {
|
|
discuss: string;
|
|
documentation: string;
|
|
support: string;
|
|
website: string;
|
|
donate: string;
|
|
source: string;
|
|
} | undefined;
|
|
className(): string;
|
|
sections(): ItemList;
|
|
topItems(): ItemList;
|
|
infoItems(): ItemList;
|
|
toggle(): void;
|
|
isEnabled(): any;
|
|
onerror(e: any): void;
|
|
}
|
|
import AdminPage from "./AdminPage";
|
|
import ItemList from "../../common/utils/ItemList";
|