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

Bundled output for commit 92b2b4aad1

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

[skip ci]
This commit is contained in:
flarum-bot
2024-10-22 09:18:09 +00:00
parent 92b2b4aad1
commit 0694651fe9
5 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import Model from 'flarum/common/Model';
export declare type TaskOperations = 'extension_install' | 'extension_remove' | 'extension_update' | 'update_global' | 'update_minor' | 'update_major' | 'update_check' | 'why_not';
export default class Task extends Model {
status(): "running" | "pending" | "success" | "failure";
status(): "pending" | "running" | "failure" | "success";
operation(): TaskOperations;
command(): string;
package(): string;