UNPKG

532 BTypeScriptView Raw
1import type { OutputTargetAngular } from './types';
2import type { CompilerCtx, ComponentCompilerMeta, Config } from '@stencil/core/internal';
3export interface ValueAccessor {
4 elementSelectors: string[];
5 eventTargets: [string, string][];
6}
7export default function generateValueAccessors(compilerCtx: CompilerCtx, components: ComponentCompilerMeta[], outputTarget: OutputTargetAngular, config: Config): Promise<void>;
8export declare function createValueAccessor(srcFileContents: string, valueAccessor: ValueAccessor): string;