interface ReadAllFilesResponse {
    filePromise: Promise<
        {
            details?: Record<string, AccountSyncStatusEntry>;
            state: LibrarySyncStatus;
        },
    >;
    stopPolling: () => void;
}

Properties

filePromise: Promise<
    {
        details?: Record<string, AccountSyncStatusEntry>;
        state: LibrarySyncStatus;
    },
>
stopPolling: () => void