mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
fix(core): make name in Pipe non optional
This commit is contained in:
parent
42d442dcd5
commit
42a287fabf
1 changed files with 1 additions and 1 deletions
|
|
@ -1100,7 +1100,7 @@ export interface PipeDecorator {
|
|||
* @stable
|
||||
*/
|
||||
export interface Pipe {
|
||||
name?: string;
|
||||
name: string;
|
||||
pure?: boolean;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue