UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

7 lines (6 loc) 250 B
export interface FocusOptions { preventScroll?: boolean; cursor?: "end" | "start" | "all"; } /** 聚焦在某个元素上 */ export declare function triggerFocus(element?: HTMLInputElement | HTMLTextAreaElement, option?: FocusOptions): void;