| 8 | |
| 9 | /** Interface for a text control that is used to drive interaction with a mat-chip-grid. */ |
| 10 | export interface MatChipTextControl { |
| 11 | /** Unique identifier for the text control. */ |
| 12 | id: string; |
| 13 | |
| 14 | /** The text control's placeholder text. */ |
| 15 | placeholder: string; |
| 16 | |
| 17 | /** Whether the text control has browser focus. */ |
| 18 | focused: boolean; |
| 19 | |
| 20 | /** Whether the text control is empty. */ |
| 21 | empty: boolean; |
| 22 | |
| 23 | /** Focuses the text control. */ |
| 24 | focus(): void; |
| 25 | |
| 26 | /** Gets the list of ids the input is described by. */ |
| 27 | readonly describedByIds?: string[]; |
| 28 | |
| 29 | /** Sets the list of ids the input is described by. */ |
| 30 | setDescribedByIds(ids: string[]): void; |
| 31 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…