Skip to content

@mt-kit/enum

npm versionGitHub starsGitHub issuesLicenseDocumentation

TypeScript 枚举类型定义集合,提供常用的枚举值。

安装

bash
npm i @mt-kit/enum

API

CursorType

鼠标光标形状枚举,包含常用的 CSS cursor 值。

ts
import { CursorType } from '@mt-kit/enum';

// 使用示例
element.style.cursor = CursorType.POINTER;
element.style.cursor = CursorType.WAIT;
element.style.cursor = CursorType.NOT_ALLOWED;

基于 MIT 许可发布