carbon-react
Version:
A library of reusable React components for easily building user interfaces.
5 lines (4 loc) • 308 B
TypeScript
import React from "react";
declare function characterNavigation(inputString?: string, focusableItems?: Element[]): Element | undefined;
declare function menuKeyboardNavigation(event: React.KeyboardEvent, focusableItems: Element[]): number | undefined;
export { characterNavigation, menuKeyboardNavigation };