1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 09:57:06 +02:00

Bundled output for commit 4982efed3a

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

[skip ci]
This commit is contained in:
flarum-bot
2021-10-27 20:17:11 +00:00
parent 4982efed3a
commit db6c8b8774
9 changed files with 167 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
export default class Model {
constructor(type: any, model?: any);
constructor(type: any, model?: null);
type: any;
attributes: any[];
hasOnes: any[];

View File

@@ -44,8 +44,8 @@ export default abstract class PaginatedListState<T extends Model> {
* @param page
* @see requestParams
*/
refreshParams(newParams: any, page: number): any;
refresh(page?: number): any;
refreshParams(newParams: any, page: number): Promise<void> | undefined;
refresh(page?: number): Promise<void>;
getPages(): Page<T>[];
getLocation(): PaginationLocation;
isLoading(): boolean;