1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 16:07:34 +02:00

Bundled output for commit 352a50e3ad

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

[skip ci]
This commit is contained in:
flarum-bot
2022-08-16 17:36:57 +00:00
parent 352a50e3ad
commit 974f003fe3
3 changed files with 5 additions and 5 deletions

View File

@@ -9,17 +9,17 @@ export default class StatisticsWidget extends DashboardWidget {
entities: string[]; entities: string[];
periods: undefined | Record<string, IPeriodDeclaration>; periods: undefined | Record<string, IPeriodDeclaration>;
chart: any; chart: any;
timedData: any; timedData: Record<string, undefined | any>;
lifetimeData: any; lifetimeData: any;
loadingLifetime: boolean; loadingLifetime: boolean;
loadingTimed: boolean; loadingTimed: Record<string, 'unloaded' | 'loading' | 'loaded' | 'fail'>;
selectedEntity: string; selectedEntity: string;
selectedPeriod: undefined | string; selectedPeriod: undefined | string;
chartEntity?: string; chartEntity?: string;
chartPeriod?: string; chartPeriod?: string;
oncreate(vnode: Mithril.VnodeDOM<IDashboardWidgetAttrs, this>): void; oncreate(vnode: Mithril.VnodeDOM<IDashboardWidgetAttrs, this>): void;
loadLifetimeData(): Promise<void>; loadLifetimeData(): Promise<void>;
loadTimedData(): Promise<void>; loadTimedData(model: string): Promise<void>;
className(): string; className(): string;
content(): JSX.Element; content(): JSX.Element;
drawChart(vnode: Mithril.VnodeDOM<any, any>): void; drawChart(vnode: Mithril.VnodeDOM<any, any>): void;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long