@tusss/ood
    Preparing search index...

    Interface IConfigLoader<TConfig>

    Interface for config loaders responsible for retrieving configuration objects.

    interface IConfigLoader<TConfig = Config> {
        load: () => Promise<TConfig>;
    }

    Type Parameters

    • TConfig = Config

      The type of configuration object returned by the loader.

    Index

    Properties

    Properties

    load: () => Promise<TConfig>

    Loads the configuration asynchronously.

    Type Declaration

      • (): Promise<TConfig>
      • Returns Promise<TConfig>

        A promise resolving to the configuration object.