From 42a287fabf6b035d51e00cf3006c27fec00f054a Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Mon, 12 Sep 2016 22:36:23 -0700 Subject: [PATCH] fix(core): make `name` in `Pipe` non optional --- modules/@angular/core/src/metadata/directives.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/core/src/metadata/directives.ts b/modules/@angular/core/src/metadata/directives.ts index dbc6c5994b..79169bbe80 100644 --- a/modules/@angular/core/src/metadata/directives.ts +++ b/modules/@angular/core/src/metadata/directives.ts @@ -1100,7 +1100,7 @@ export interface PipeDecorator { * @stable */ export interface Pipe { - name?: string; + name: string; pure?: boolean; }