Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

createConfigLoader

function createConfigLoader<T>(options: LoadConfigOptions): {
load: (force?: boolean) => Promise<LoadConfigResult<T>>;
findConfigs: () => Promise<string[]>;
}
;
§
createConfigLoader<T>(options: LoadConfigOptions): {
load: (force?: boolean) => Promise<LoadConfigResult<T>>;
findConfigs: () => Promise<string[]>;
}
[src]

§Type Parameters

§Parameters

§Return Type

§
{
load: (force?: boolean) => Promise<LoadConfigResult<T>>;
findConfigs: () => Promise<string[]>;
}
[src]