Last change
on this file was fa375fe, checked in by Ema <ema_spirova@…>, 3 years ago |
adding new components
|
-
Property mode
set to
100644
|
File size:
993 bytes
|
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 | */
|
---|
8 | import { Optional } from '@angular/core';
|
---|
9 | import { 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 | */
|
---|
14 | export declare class MatSortHeaderIntl {
|
---|
15 | /**
|
---|
16 | * Stream that emits whenever the labels here are changed. Use this to notify
|
---|
17 | * components if the labels have changed after initialization.
|
---|
18 | */
|
---|
19 | readonly changes: Subject<void>;
|
---|
20 | }
|
---|
21 | /** @docs-private */
|
---|
22 | export declare function MAT_SORT_HEADER_INTL_PROVIDER_FACTORY(parentIntl: MatSortHeaderIntl): MatSortHeaderIntl;
|
---|
23 | /** @docs-private */
|
---|
24 | export declare const MAT_SORT_HEADER_INTL_PROVIDER: {
|
---|
25 | provide: typeof MatSortHeaderIntl;
|
---|
26 | deps: Optional[][];
|
---|
27 | useFactory: typeof MAT_SORT_HEADER_INTL_PROVIDER_FACTORY;
|
---|
28 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.