@angular-mdc/web
Version:
45 lines (44 loc) • 1.45 kB
TypeScript
import { ElementRef } from '@angular/core';
import { MdcCheckbox } from '@angular-mdc/web/checkbox';
export declare class MDCDataTableTable {
elementRef: ElementRef<HTMLElement>;
constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MDCDataTableHeaderRow {
elementRef: ElementRef<HTMLElement>;
constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MDCDataTableHeaderCell {
elementRef: ElementRef<HTMLElement>;
get numeric(): boolean;
set numeric(value: boolean);
private _numeric;
_checkbox?: MdcCheckbox;
constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MDCDataTableContent {
elementRef: ElementRef<HTMLElement>;
constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MDCDataTableRow {
elementRef: ElementRef<HTMLElement>;
private _id;
/** The unique ID of the row. */
get id(): string;
_checkbox?: MdcCheckbox;
get selected(): boolean;
set selected(value: boolean);
private _selected;
constructor(elementRef: ElementRef<HTMLElement>);
getNativeElement(): HTMLElement;
}
export declare class MDCDataTableCell {
elementRef: ElementRef<HTMLElement>;
get checkbox(): boolean;
set checkbox(value: boolean);
private _checkbox;
get numeric(): boolean;
set numeric(value: boolean);
private _numeric;
constructor(elementRef: ElementRef<HTMLElement>);
}