@nxext/stencil
Version:
Nx plugin for stenciljs
7 lines (6 loc) • 347 B
TypeScript
import type { Config } from '@stencil/core/compiler';
import { CompilerSystem } from '@stencil/core/sys/node';
type CoreCompiler = typeof import('@stencil/core/compiler');
export declare const loadCoreCompiler: (sys: CompilerSystem) => Promise<CoreCompiler>;
export declare function createStencilProcess(config: Config): Promise<void>;
export {};