project.d.ts 679 B

12345678910111213141516171819
  1. import { Project as ProjectInterface } from "../interfaces/project";
  2. import { ProjectSettings } from "../interfaces/project_settings";
  3. import { ProjectStatistics } from "../interfaces/project_statistics";
  4. import { BaseModel } from "./base_model";
  5. export declare class Project extends BaseModel implements ProjectInterface {
  6. project_id: string;
  7. project_type: string;
  8. name: string;
  9. description: string;
  10. created_at: string;
  11. created_at_timestamp: number;
  12. created_by: number;
  13. created_by_email: string;
  14. team_id: number;
  15. base_language_id: number;
  16. base_language_iso: string;
  17. settings: ProjectSettings;
  18. statistics: ProjectStatistics;
  19. }