import { CollectionId, UserId, VisibleOption, ExecutorOrCreator } from 'teambition-types'; export interface CollectionSchema { _id: CollectionId; title: string; _projectId: string; _creatorId: UserId; _parentId: CollectionId; collectionType: string; description: string; isArchived: boolean; created: string; updated: string; visible: VisibleOption; isConfigurable: boolean; involveMembers: UserId[]; involvers: ExecutorOrCreator[]; lockedConfigurabilityBy: 'children' | 'parent' | null; }