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
/**
9
 * @module
10
 * @description
11
 * This module provides a set of common Pipes.
12
 */
13
import { AsyncPipe } from './async_pipe';
14
import { LowerCasePipe, TitleCasePipe, UpperCasePipe } from './case_conversion_pipes';
15
import { DatePipe } from './date_pipe';
16
import { I18nPluralPipe } from './i18n_plural_pipe';
17
import { I18nSelectPipe } from './i18n_select_pipe';
18
import { JsonPipe } from './json_pipe';
19
import { CurrencyPipe, DecimalPipe, PercentPipe } from './number_pipe';
20
import { SlicePipe } from './slice_pipe';
21
export { AsyncPipe, CurrencyPipe, DatePipe, DecimalPipe, I18nPluralPipe, I18nSelectPipe, JsonPipe, LowerCasePipe, PercentPipe, SlicePipe, TitleCasePipe, UpperCasePipe };
22
/**
23
 * A collection of Angular pipes that are likely to be used in each and every application.
24
 */
25
export declare const COMMON_PIPES: (typeof AsyncPipe | typeof DecimalPipe | typeof PercentPipe | typeof CurrencyPipe | typeof DatePipe | typeof I18nPluralPipe | typeof I18nSelectPipe | typeof SlicePipe)[];
(6-6/11)