1234567891011121314151617 |
- import { Keyable } from "./keyable";
- type ProcessDetails = {
- files: Keyable[];
- [key: string]: any;
- };
- export interface QueuedProcess {
- process_id: string;
- type: string;
- status: string;
- message: string;
- created_by: string;
- created_by_email: string;
- created_at: string;
- created_at_timestamp: number;
- details: ProcessDetails;
- }
- export {};
|