You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
695 B
20 lines
695 B
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
/** Interface for a text control that is used to drive interaction with a mat-chip-list. */
|
|
export interface MatChipTextControl {
|
|
/** Unique identifier for the text control. */
|
|
id: string;
|
|
/** The text control's placeholder text. */
|
|
placeholder: string;
|
|
/** Whether the text control has browser focus. */
|
|
focused: boolean;
|
|
/** Whether the text control is empty. */
|
|
empty: boolean;
|
|
/** Focuses the text control. */
|
|
focus(options?: FocusOptions): void;
|
|
}
|