Bundled output for commit 0fed7bc2479d3620fef51358635c1618cf98c582

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

[skip ci]
This commit is contained in:
flarum-bot 2021-11-09 03:35:53 +00:00
parent 0fed7bc247
commit a627013cd7
2 changed files with 8 additions and 3 deletions

View File

@ -1,11 +1,16 @@
import PaginatedListState, { Page } from '../../common/states/PaginatedListState';
import Discussion from '../../common/models/Discussion';
export interface IRequestParams {
include: string[];
filter: Record<string, string>;
sort?: string;
}
export default class DiscussionListState extends PaginatedListState<Discussion> {
protected extraDiscussions: Discussion[];
constructor(params: any, page?: number);
get type(): string;
requestParams(): any;
protected loadPage(page?: number): any;
requestParams(): IRequestParams;
protected loadPage(page?: number): Promise<Discussion[]>;
clear(): void;
/**
* Get a map of sort keys (which appear in the URL, and are used for

File diff suppressed because one or more lines are too long