UNPKG

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