@liftr/cli
Version:
The Liftr CLI provides scaffolding for the Liftr framework
11 lines (10 loc) • 500 B
TypeScript
interface CreateParameters {
name: string;
content: string;
extension: string;
flatFile: boolean;
}
export declare function createComponent({ name, content, extension, flatFile }: CreateParameters): Promise<void>;
export declare function createTestFile({ name, content, extension, flatFile }: CreateParameters): Promise<void>;
export declare function findModuleAndInsertComponents(name: string, flatFile: boolean, targetModuleName?: string, endpointMethod?: string): void;
export {};