ttrpg-tools/src/components/index.ts

16 lines
478 B
TypeScript
Raw Normal View History

2026-02-26 00:47:26 +08:00
// 导入以注册自定义元素
import './dice';
import './table';
2026-02-26 09:24:26 +08:00
import './md-link';
2026-02-27 00:27:04 +08:00
import './md-pins';
2026-02-26 09:24:26 +08:00
// 导出组件
export { Article } from './Article';
export type { ArticleProps } from './Article';
2026-02-26 15:22:40 +08:00
export { MobileSidebar, DesktopSidebar } from './Sidebar';
2026-02-26 14:24:48 +08:00
export type { SidebarProps } from './Sidebar';
2026-02-26 15:04:17 +08:00
export { FileTreeNode, HeadingNode } from './FileTree';
2026-02-26 00:17:23 +08:00
2026-02-26 09:31:12 +08:00
// 导出数据类型
2026-02-26 00:47:26 +08:00
export type { DiceProps } from './dice';
2026-02-26 18:11:33 +08:00
export type { TableProps } from './table';