queued_process.d.ts 380 B

1234567891011121314151617
  1. import { Keyable } from "./keyable";
  2. type ProcessDetails = {
  3. files: Keyable[];
  4. [key: string]: any;
  5. };
  6. export interface QueuedProcess {
  7. process_id: string;
  8. type: string;
  9. status: string;
  10. message: string;
  11. created_by: string;
  12. created_by_email: string;
  13. created_at: string;
  14. created_at_timestamp: number;
  15. details: ProcessDetails;
  16. }
  17. export {};