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

    Контекст таймлайна

    interface TimelineContext {
        currentProject: any;
        issues: {
            elementId?: string;
            message: string;
            severity: "low" | "medium" | "high";
            type: "error" | "warning" | "suggestion";
        }[];
        projectStats: {
            totalClips: number;
            totalDuration: number;
            totalSections: number;
            totalTracks: number;
            usedResources: Record<PREVIEW_SIZES, number>;
        };
        recentChanges: {
            action: string;
            affectedElements: string[];
            description: string;
            timestamp: Date;
        }[];
    }
    Index

    Properties

    currentProject: any
    issues: {
        elementId?: string;
        message: string;
        severity: "low" | "medium" | "high";
        type: "error" | "warning" | "suggestion";
    }[]
    projectStats: {
        totalClips: number;
        totalDuration: number;
        totalSections: number;
        totalTracks: number;
        usedResources: Record<PREVIEW_SIZES, number>;
    }
    recentChanges: {
        action: string;
        affectedElements: string[];
        description: string;
        timestamp: Date;
    }[]