UNPKG

497 BTypeScriptView Raw
1import type { CompilerCtx, ComponentCompilerMeta, Config } from '@stencil/core/internal';
2import type { OutputTargetAngular, PackageJSON } from './types';
3export declare function angularDirectiveProxyOutput(compilerCtx: CompilerCtx, outputTarget: OutputTargetAngular, components: ComponentCompilerMeta[], config: Config): Promise<void>;
4export declare function generateProxies(components: ComponentCompilerMeta[], pkgData: PackageJSON, outputTarget: OutputTargetAngular, rootDir: string): string;