Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
687 bytes
|
Line | |
---|
1 | import { R3CompiledExpression } from '../util';
|
---|
2 | import { R3DirectiveMetadata } from '../view/api';
|
---|
3 | import { DefinitionMap } from '../view/util';
|
---|
4 | import { R3DeclareDirectiveMetadata } from './api';
|
---|
5 | /**
|
---|
6 | * Compile a directive declaration defined by the `R3DirectiveMetadata`.
|
---|
7 | */
|
---|
8 | export 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 | */
|
---|
13 | export declare function createDirectiveDefinitionMap(meta: R3DirectiveMetadata): DefinitionMap<R3DeclareDirectiveMetadata>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.