@o3r/amaterasu-sdk
Version:
Ama-terasu module for DES SDK generation
24 lines • 779 B
TypeScript
import { Context } from '@ama-terasu/core';
/** Option to create an application */
export interface CreateTypescriptSdkOptions {
/** SDK Name */
name: string;
/** Use Yarn instead of NPM */
yarn?: boolean;
/** Path of the folder to create the SDK package */
path: string;
/**
* Set default options instead of requiring input
* @default false
*/
yes?: boolean;
/** Path to the specification used to generate the SDK */
specification?: string;
}
/**
* Create an empty Typescript SDK
* @param context Context of the command
* @param options Options
*/
export declare const createTypescriptSdk: (context: Context, options: CreateTypescriptSdkOptions) => Promise<void>;
//# sourceMappingURL=create-typescript.command.d.ts.map