snapshot.d.ts 351 B

12345678910
  1. import { BaseModel } from "./base_model";
  2. import { Snapshot as SnapshotInterface } from "../interfaces/snapshot";
  3. export declare class Snapshot extends BaseModel implements SnapshotInterface {
  4. snapshot_id: number;
  5. title: string;
  6. created_at: string;
  7. created_at_timestamp: number;
  8. created_by: number;
  9. created_by_email: string;
  10. }