MCPcopy Index your code
hub / github.com/react-component/input / InputRef

Interface InputRef

src/interface.ts:143–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143export 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
156export interface ChangeEventInfo {
157 source: 'compositionEnd' | 'change';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…