Timeline Studio API Documentation - v0.26.0
    Preparing search index...

    Настройки коллаборации

    interface CollaborationSettings {
        cloud?: {
            autoResolveConflicts: boolean;
            syncInterval: number;
            workspaceId: string;
        };
        collaborators?: {
            color: string;
            email: string;
            id: string;
            name: string;
            role: "owner"
            | "editor"
            | "viewer";
        }[];
        enabled: boolean;
        local?: { lockFiles: boolean; sharedPath: string };
        mode: "local" | "cloud";
    }
    Index

    Properties

    cloud?: {
        autoResolveConflicts: boolean;
        syncInterval: number;
        workspaceId: string;
    }

    Для облачной коллаборации

    collaborators?: {
        color: string;
        email: string;
        id: string;
        name: string;
        role: "owner" | "editor" | "viewer";
    }[]

    Участники

    enabled: boolean
    local?: { lockFiles: boolean; sharedPath: string }

    Для локальной коллаборации

    mode: "local" | "cloud"