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

    Интерфейс контекста машины состояний настроек приложения

    interface AppSettingsContextType {
        currentProject: {
            isDirty: boolean;
            isNew: boolean;
            name: string;
            path: string;
        };
        error: string;
        favorites: FavoritesType;
        isLoading: boolean;
        mediaFiles: { allFiles: MediaFile[]; error: string; isLoading: boolean };
        musicFiles: { allFiles: MediaFile[]; error: string; isLoading: boolean };
        recentProjects: { lastOpened: number; name: string; path: string }[];
        userSettings: UserSettingsContextType;
    }
    Index

    Properties

    currentProject: { isDirty: boolean; isNew: boolean; name: string; path: string }
    error: string
    favorites: FavoritesType
    isLoading: boolean
    mediaFiles: { allFiles: MediaFile[]; error: string; isLoading: boolean }
    musicFiles: { allFiles: MediaFile[]; error: string; isLoading: boolean }
    recentProjects: { lastOpened: number; name: string; path: string }[]
    userSettings: UserSettingsContextType