import { TypeClass } from './typeclass/typeclass'; import { Job } from './job/job'; export type Snapshot = { _id: string; object_id: string; object_type: "TypeClass" | "Job"; snapshot: TypeClass | Job; modified_by: string; created_at: string; };