export interface IModel { name: string; cpu: number; ram: number; status: 'created'; id: string; } export interface IListModelResponse { project: { project: { models: IModel[]; } } } export interface ICreateModelResponse { createModel: { project: { models: IModel[]; } } }