UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

12 lines (11 loc) 317 B
import { PipeTransform } from 'angular2/core'; /** * Transforms text to lowercase. * * ### Example * * {@example core/pipes/ts/lowerupper_pipe/lowerupper_pipe_example.ts region='LowerUpperPipe'} */ export declare class LowerCasePipe implements PipeTransform { transform(value: string): string; }