mirror of
https://github.com/flarum/framework.git
synced 2025-01-10 13:03:43 +08:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
|
import QueueState from './states/QueueState';
|
||
|
|
||
|
export interface AsyncBackendResponse {
|
||
|
processing: boolean;
|
||
|
}
|
||
|
|
||
|
declare module 'flarum/admin/AdminApplication' {
|
||
|
export default interface AdminApplication {
|
||
|
packageManagerQueue: QueueState;
|
||
|
}
|
||
|
}
|