openpanel/packages/core/src/interfaces/notification.ts
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

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;
}