UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

11 lines (10 loc) 330 B
import { PipeTransform } from 'angular2/core'; /** * Transforms any input value using `JSON.stringify`. Useful for debugging. * * ### Example * {@example core/pipes/ts/json_pipe/json_pipe_example.ts region='JsonPipe'} */ export declare class JsonPipe implements PipeTransform { transform(value: any): string; }