@nxext/stencil
Version:
Nx plugin for stenciljs
11 lines (10 loc) • 313 B
TypeScript
import { Tree } from '@nx/devkit';
export interface ComponentSchema {
name: string;
project: string;
directory?: string;
style?: string;
skipFormat?: boolean;
}
export declare function componentGenerator(host: Tree, options: ComponentSchema): Promise<void>;
export default componentGenerator;