Skip to content

Папки проекта

Папки проекта

project_folders. Хранит иерархию папок, в которых организованы объекты проекта.

Интерфейс записи

ts
export interface IFolderStorageType {
  id: string;
  name: string;
  parentId: string;
  position: number;
  isTemplate: 0 | 1;
  timeCreation: string;
  projectId: string;
  syncedAt: Record<string, string>;
  updateAt: string;
  templateId: string;
  templateRootId: string;
  description: string;
}

Mentioned In