UNPKG

242 BTypeScriptView Raw
1import { ConfigObject } from '../types';
2declare type ConfigFactoryReturnValue<T extends ConfigObject> = T | Promise<T>;
3export declare type ConfigFactory<T extends ConfigObject = ConfigObject> = () => ConfigFactoryReturnValue<T>;
4export {};