mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 04:26:01 +08:00
Currently , the CLI generates : ```typescript transform(value: any , args?: any) ``` With this commit , it generate : ```typescript transform(value: any, ...args?: any[]) ``` Which conforms to the official doc Fixes #12602