@tryloop/oats
Version:
🌾 OATS - OpenAPI TypeScript Sync. The missing link between your OpenAPI specs and TypeScript applications. Automatically watch, generate, and sync TypeScript clients from your API definitions.
18 lines • 357 B
TypeScript
/**
* OATS Init Command
*
* Interactive initialization of OATS configuration
*
* @module @oatsjs/cli/init
*/
interface InitOptions {
force?: boolean;
yes?: boolean;
template?: string;
}
/**
* Initialize OATS configuration
*/
export declare function init(options: InitOptions): Promise<void>;
export {};
//# sourceMappingURL=init.d.ts.map