Interface PipeTransform<T, U>

Pipes are used as singleton it will be created if it needed, had no life cycle

  • no dependency injection applied on filters for now, TODO: add support of dependency injection
interface PipeTransform<T, U> {
    transform(value: T, ...args: any[]): U;
}

Type Parameters

  • T
  • U

Implemented by

Methods

Methods