| 141 | } |
| 142 | |
| 143 | export interface InputRef { |
| 144 | focus: (options?: InputFocusOptions) => void; |
| 145 | blur: () => void; |
| 146 | setSelectionRange: ( |
| 147 | start: number, |
| 148 | end: number, |
| 149 | direction?: 'forward' | 'backward' | 'none', |
| 150 | ) => void; |
| 151 | select: () => void; |
| 152 | input: HTMLInputElement | null; |
| 153 | nativeElement: HTMLElement | null; |
| 154 | } |
| 155 | |
| 156 | export interface ChangeEventInfo { |
| 157 | source: 'compositionEnd' | 'change'; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…