-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Description
ng g p foo should create a symbol named FooPipe. Selector is fine. Instead, it creates the below Foo
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'foo'
})
export class Foo implements PipeTransform {
transform(value: any, args?: any): any {
return null;
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels