Appearance
TypeScript 枚举类型定义集合,提供常用的枚举值。
npm i @mt-kit/enum
鼠标光标形状枚举,包含常用的 CSS cursor 值。
import { CursorType } from '@mt-kit/enum'; // 使用示例 element.style.cursor = CursorType.POINTER; element.style.cursor = CursorType.WAIT; element.style.cursor = CursorType.NOT_ALLOWED;