-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathline.d-ed625688.d.ts
executable file
·25 lines (23 loc) · 1.15 KB
/
line.d-ed625688.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as i0 from '@angular/core';
import { QueryList, ElementRef } from '@angular/core';
import { M as MatCommonModule } from './common-module.d-1b789e68.js';
/**
* Shared directive to count lines inside a text area, such as a list item.
* Line elements can be extracted with a @ContentChildren(MatLine) query, then
* counted by checking the query list's length.
*/
declare class MatLine {
static ɵfac: i0.ɵɵFactoryDeclaration<MatLine, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<MatLine, "[mat-line], [matLine]", never, {}, {}, never, never, true, never>;
}
/**
* Helper that takes a query list of lines and sets the correct class on the host.
* @docs-private
*/
declare function setLines(lines: QueryList<unknown>, element: ElementRef<HTMLElement>, prefix?: string): void;
declare class MatLineModule {
static ɵfac: i0.ɵɵFactoryDeclaration<MatLineModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MatLineModule, never, [typeof MatCommonModule, typeof MatLine], [typeof MatLine, typeof MatCommonModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<MatLineModule>;
}
export { MatLine as M, MatLineModule as a, setLines as s };