From 785292f44fbcbd11be5bb1f766452d2ddf4bde0a Mon Sep 17 00:00:00 2001 From: vsavkin Date: Wed, 14 Sep 2016 13:24:47 -0700 Subject: [PATCH] chore(core): reexport query metadata decorators --- modules/@angular/core/src/metadata.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/@angular/core/src/metadata.ts b/modules/@angular/core/src/metadata.ts index a19bc7cebc..41d51d8d94 100644 --- a/modules/@angular/core/src/metadata.ts +++ b/modules/@angular/core/src/metadata.ts @@ -18,7 +18,9 @@ import {ViewEncapsulation} from './metadata/view'; import {Type} from './type'; import {TypeDecorator, makeParamDecorator, makePropDecorator} from './util/decorators'; -export {ANALYZE_FOR_ENTRY_COMPONENTS, Attribute, ContentChild, ContentChildren, Query, ViewChild, ViewChildren} from './metadata/di'; +export {ANALYZE_FOR_ENTRY_COMPONENTS, Attribute, ContentChild, ContentChildren, Query, ViewChild, ViewChildren, + ContentChildDecorator, ContentChildrenDecorator, ViewChildDecorator, ViewChildrenDecorator +} from './metadata/di'; export {Component, Directive, HostBinding, HostListener, Input, Output, Pipe} from './metadata/directives'; export {AfterContentChecked, AfterContentInit, AfterViewChecked, AfterViewInit, DoCheck, OnChanges, OnDestroy, OnInit} from './metadata/lifecycle_hooks'; export {CUSTOM_ELEMENTS_SCHEMA, ModuleWithProviders, NO_ERRORS_SCHEMA, NgModule, SchemaMetadata} from './metadata/ng_module';