1
0
mirror of https://github.com/flarum/core.git synced 2025-10-23 04:36:08 +02:00

Bundled output for commit 187b5c6f0b

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot
2021-12-13 01:41:29 +00:00
parent 187b5c6f0b
commit c2ec848744
25 changed files with 387 additions and 195 deletions

View File

@@ -3,6 +3,6 @@ export default class ReadmeModal extends Modal<import("../../common/components/M
name: any;
extName: any;
loadReadme(): Promise<void>;
readme: any;
readme: import("../../common/Store").ApiResponseSingle<import("../../common/Model").default> | undefined;
}
import Modal from "../../common/components/Modal";

View File

@@ -1,5 +1,5 @@
/// <reference path="../../../src/common/translator-icu-rich.d.ts" />
/// <reference types="mithril" />
import type Mithril from 'mithril';
import type User from '../../common/models/User';
import ItemList from '../../common/utils/ItemList';
import AdminPage from './AdminPage';
@@ -11,7 +11,7 @@ declare type ColumnData = {
/**
* Component(s) to show for this column.
*/
content: (user: User) => JSX.Element;
content: (user: User) => Mithril.Children;
};
/**
* Admin page which displays a paginated list of all users on the forum.