@liftr/cli
Version:
The Liftr CLI provides scaffolding for the Liftr framework
10 lines (9 loc) • 348 B
TypeScript
import { ComponentConfig } from '../types/component-config';
interface CreateMainComponentParams {
componentName: string;
config: ComponentConfig;
componentType: string;
flatFile: boolean;
}
export declare function createMainComponent({ componentName, config, componentType, flatFile }: CreateMainComponentParams): void;
export {};