UNPKG

@kv-systems/ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

12 lines (10 loc) 252 B
import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'ngPipe', standalone: false, }) export class AngularPipe implements PipeTransform { transform(value: any, ...args: any[]) { throw new Error('Method not implemented.'); } }