@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.
21 lines • 430 B
TypeScript
/**
* OATS Start Command
*
* Starts the orchestrator to watch and sync services
*
* @module @oatsjs/cli/start
*/
interface StartOptions {
config?: string;
initGen?: boolean;
verbose?: boolean;
notify?: boolean;
colors?: boolean;
oneTime?: boolean;
}
/**
* Start OATS orchestrator
*/
export declare function start(options: StartOptions): Promise<void>;
export {};
//# sourceMappingURL=start.d.ts.map