chore(templateOutlet): fix linting
This commit is contained in:
parent
9c0031f7a5
commit
97833d48c1
|
@ -1,7 +1,9 @@
|
||||||
import {Directive, Input, TemplateRef, ViewContainerRef, EmbeddedViewRef} from '@angular/core';
|
import {Directive, EmbeddedViewRef, Input, TemplateRef, ViewContainerRef} from '@angular/core';
|
||||||
|
|
||||||
import {isPresent} from '../facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and inserts an embedded view based on a prepared `TemplateRef`.
|
* Creates and inserts an embedded view based on a prepared `TemplateRef`.
|
||||||
* You can attach a context object to the `EmbeddedViewRef` by setting `[ngOutletContext]`.
|
* You can attach a context object to the `EmbeddedViewRef` by setting `[ngOutletContext]`.
|
||||||
|
@ -11,7 +13,8 @@ import {isPresent} from '../facade/lang';
|
||||||
* Note: using the key `$implicit` in the context object will set it's value as default.
|
* Note: using the key `$implicit` in the context object will set it's value as default.
|
||||||
*
|
*
|
||||||
* ### Syntax
|
* ### Syntax
|
||||||
* - `<template [ngTemplateOutlet]="templateRefExpression" [ngOutletContext]="objectExpression"></template>`
|
* - `<template [ngTemplateOutlet]="templateRefExpression"
|
||||||
|
* [ngOutletContext]="objectExpression"></template>`
|
||||||
*
|
*
|
||||||
* @experimental
|
* @experimental
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue