fix(core): make `name` in `Pipe` non optional

This commit is contained in:
Tobias Bosch 2016-09-12 22:36:23 -07:00 committed by Igor Minar
parent 42d442dcd5
commit 42a287fabf
1 changed files with 1 additions and 1 deletions

View File

@ -1100,7 +1100,7 @@ export interface PipeDecorator {
* @stable
*/
export interface Pipe {
name?: string;
name: string;
pure?: boolean;
}