import { ProjectMeta } from "./project.js"; import { ProjectId } from "@milaboratories/pl-model-common"; //#region src/project_list.d.ts /** Represents single entry in the list of projects owned by current user */ interface ProjectListEntry { /** Unique project identifier in middle layer. Use to operate with given project. */ id: ProjectId; /** Creation timestamp. */ created: Date; /** Last modification timestamp. */ lastModified: Date; /** True if project is opened */ opened: boolean; /** Project meta, namely label */ meta: ProjectMeta; } //#endregion export { ProjectListEntry }; //# sourceMappingURL=project_list.d.ts.map