source: trip-planner-front/node_modules/@angular/material/sort/sort-header-intl.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC 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 */
8import { Optional } from '@angular/core';
9import { Subject } from 'rxjs';
10/**
11 * To modify the labels and text displayed, create a new instance of MatSortHeaderIntl and
12 * include it in a custom provider.
13 * @deprecated No longer being used. To be removed.
14 * @breaking-change 13.0.0
15 */
16export declare class MatSortHeaderIntl {
17 /**
18 * Stream that emits whenever the labels here are changed. Use this to notify
19 * components if the labels have changed after initialization.
20 */
21 readonly changes: Subject<void>;
22}
23/** @docs-private */
24export declare function MAT_SORT_HEADER_INTL_PROVIDER_FACTORY(parentIntl: MatSortHeaderIntl): MatSortHeaderIntl;
25/** @docs-private */
26export declare const MAT_SORT_HEADER_INTL_PROVIDER: {
27 provide: typeof MatSortHeaderIntl;
28 deps: Optional[][];
29 useFactory: typeof MAT_SORT_HEADER_INTL_PROVIDER_FACTORY;
30};
Note: See TracBrowser for help on using the repository browser.