@angular/core

PipeTransform

interface

An interface that is implemented by pipes in order to perform a transformation. Angular invokes the transform method with the value of a binding as the first argument, and any parameters as the second argument in list form.

  
    interface PipeTransform {  transform(value: any, ...args: any[]): any;}}
  
  
Jump to details