import { IModel } from '../types'; export interface IProject { name: string; id: string; active: boolean; archived: boolean; createdAt: string; updatedAt: string; models: IModel[]; } export interface IProjectsResponse { projects: IProject[]; } export interface IGetProjectInput { projectId: string; }