/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
import { Assets } from "./assets.model.js";
export type Project = {
  name: string;
  description: string;
  lastUpdated: number;
  tags: string[];
  rootDirHandle: FileSystemDirectoryHandle;
  rootDirectoryAlias: string;
  projectFileHandle: FileSystemFileHandle;
  assets: Assets;
  isPinned: boolean;
  isVCSProject: boolean;
};
