UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

5 lines (4 loc) • 226 B
import { ConfigObject } from '../types'; type ConfigFactoryReturnValue<T extends ConfigObject> = T | Promise<T>; export type ConfigFactory<T extends ConfigObject = ConfigObject> = () => ConfigFactoryReturnValue<T>; export {};