fix(core): make `name` in `Pipe` non optional
This commit is contained in:
parent
42d442dcd5
commit
42a287fabf
|
@ -1100,7 +1100,7 @@ export interface PipeDecorator {
|
|||
* @stable
|
||||
*/
|
||||
export interface Pipe {
|
||||
name?: string;
|
||||
name: string;
|
||||
pure?: boolean;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue