16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
// 导入以注册自定义元素
|
|
import './dice';
|
|
import './table';
|
|
import './md-link';
|
|
import './md-pin';
|
|
|
|
// 导出组件
|
|
export { Article } from './Article';
|
|
export type { ArticleProps } from './Article';
|
|
export { MobileSidebar, DesktopSidebar } from './Sidebar';
|
|
export type { SidebarProps } from './Sidebar';
|
|
export { FileTreeNode, HeadingNode } from './FileTree';
|
|
|
|
// 导出数据类型
|
|
export type { DiceProps } from './dice';
|
|
export type { TableProps } from './table'; |