mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import { BaseKey } from ".";
|
|
export interface IUndoableQueue {
|
|
id: BaseKey;
|
|
resource: string;
|
|
cancelMutation: () => void;
|
|
doMutation: () => void;
|
|
seconds: number;
|
|
isRunning: boolean;
|
|
isSilent: boolean;
|
|
}
|