UNPKG

@nxext/stencil

Version:

Nx plugin for stenciljs

12 lines (11 loc) 429 B
import { Tree } from '@nrwl/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; export declare const componentSchematic: (options: ComponentSchema) => (tree: any, context: any) => Promise<any>;