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