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:
2
js/dist-typings/common/extend/Model.d.ts
vendored
2
js/dist-typings/common/extend/Model.d.ts
vendored
@@ -1,5 +1,5 @@
|
||||
export default class Model {
|
||||
constructor(type: any, model?: any);
|
||||
constructor(type: any, model?: null);
|
||||
type: any;
|
||||
attributes: any[];
|
||||
hasOnes: any[];
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user