Datalayer Desktop - v0.0.2
    Preparing search index...
    • React hook that coordinates multiple preload operations in parallel.

      Parameters

      • preloadConfigs: { name: string; preloadFn: () => Promise<void> }[]

        Array of preload configurations

      Returns {
          hasAnyError: boolean;
          isAllPreloaded: boolean;
          isAnyPreloading: boolean;
          preloadStates: Record<string, PreloadState>;
          startAllPreloads: () => Promise<void>;
      }

      Individual preload states and coordination functions

      • hasAnyError: boolean
      • isAllPreloaded: boolean
      • isAnyPreloading: boolean
      • preloadStates: Record<string, PreloadState>
      • startAllPreloads: () => Promise<void>

        Starts all configured preload operations in parallel.