1
0
mirror of https://github.com/flarum/core.git synced 2025-08-21 07:41:49 +02:00

Bundled output for commit 795a500adb

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

[skip ci]
This commit is contained in:
flarum-bot
2022-07-24 13:06:41 +00:00
parent 795a500adb
commit fe20e2c212
17 changed files with 107 additions and 19 deletions

View File

@@ -0,0 +1,16 @@
import Task from '../models/Task';
import { ApiQueryParamsPlural } from 'flarum/common/Store';
export default class QueueState {
private tasks;
private limit;
private offset;
private total;
load(params?: ApiQueryParamsPlural): any;
getItems(): Task[] | null;
getTotalPages(): number;
pageNumber(): number;
hasPrev(): boolean;
hasNext(): boolean;
prev(): void;
next(): void;
}