@expressots/cli
Version:
Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)
21 lines (20 loc) • 520 B
TypeScript
/**
* Create a template props
* @param schematic
* @param path
* @param method
*/
type CreateTemplateProps = {
schematic: string;
path: string;
method: string;
};
/**
* Create a template based on the schematic
* @param schematic - the schematic to create
* @param path - the path to create the schematic
* @param method - the http method
* @returns the file created
*/
export declare const createTemplate: ({ schematic, path: target, method, }: CreateTemplateProps) => Promise<string>;
export {};