UNPKG

@exezt-/webamp-custom

Version:

Winamp 2 implemented in HTML5 and JavaScript

9 lines (8 loc) 293 B
import { WindowId } from "../types"; interface Props { onKeyDown?(e: KeyboardEvent): void; windowId: WindowId; children: React.ReactNode; } declare function FocusTarget({ onKeyDown, windowId, children }: Props): import("react/jsx-runtime").JSX.Element; export default FocusTarget;