UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

7 lines (5 loc) 206 B
import {PipeTransform} from './pipe_transform'; export interface Pipes { get(name: string): SelectedPipe; } export class SelectedPipe { constructor(public pipe: PipeTransform, public pure: boolean) {} }