Project

General

Profile

1
/**
2
 * @license
3
 * Copyright Google Inc. All Rights Reserved.
4
 *
5
 * Use of this source code is governed by an MIT-style license that can be
6
 * found in the LICENSE file at https://angular.io/license
7
 */
8
import { PipeTransform } from '@angular/core';
9
/**
10
 * Transforms text to lowercase.
11
 *
12
 * {@example  common/pipes/ts/lowerupper_pipe.ts region='LowerUpperPipe' }
13
 *
14
 * @stable
15
 */
16
export declare class LowerCasePipe implements PipeTransform {
17
    transform(value: string): string;
18
}
19
/**
20
 * Transforms text to titlecase.
21
 *
22
 * @stable
23
 */
24
export declare class TitleCasePipe implements PipeTransform {
25
    transform(value: string): string;
26
}
27
/**
28
 * Transforms text to uppercase.
29
 *
30
 * @stable
31
 */
32
export declare class UpperCasePipe implements PipeTransform {
33
    transform(value: string): string;
34
}
(2-2/11)