source: trip-planner-front/node_modules/@angular/compiler/src/render3/partial/directive.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 687 bytes
Line 
1import { R3CompiledExpression } from '../util';
2import { R3DirectiveMetadata } from '../view/api';
3import { DefinitionMap } from '../view/util';
4import { R3DeclareDirectiveMetadata } from './api';
5/**
6 * Compile a directive declaration defined by the `R3DirectiveMetadata`.
7 */
8export declare function compileDeclareDirectiveFromMetadata(meta: R3DirectiveMetadata): R3CompiledExpression;
9/**
10 * Gathers the declaration fields for a directive into a `DefinitionMap`. This allows for reusing
11 * this logic for components, as they extend the directive metadata.
12 */
13export declare function createDirectiveDefinitionMap(meta: R3DirectiveMetadata): DefinitionMap<R3DeclareDirectiveMetadata>;
Note: See TracBrowser for help on using the repository browser.