@angular/material
Version:
Angular Material
8 lines (7 loc) • 309 B
TypeScript
/** Hint text to be shown underneath the form field control. */
export declare class MatHint {
/** Whether to align the hint label at the start or end of the line. */
align: 'start' | 'end';
/** Unique ID for the hint. Used for the aria-describedby on the form field control. */
id: string;
}