ttrpg-tools/src/components/index.ts

9 lines
171 B
TypeScript
Raw Normal View History

2026-02-26 00:47:26 +08:00
// 导入以注册自定义元素
import './dice';
import './table';
2026-02-26 00:17:23 +08:00
2026-02-26 00:47:26 +08:00
// 导出类型
export type { DiceProps } from './dice';
2026-02-26 00:17:23 +08:00
export type { TableProps } from './table';
2026-02-26 00:47:26 +08:00