13 lines
331 B
TypeScript
13 lines
331 B
TypeScript
|
|
/**
|
||
|
|
* Pinball Boot 模块入口
|
||
|
|
* 导出启动相关的所有类型和类
|
||
|
|
*/
|
||
|
|
|
||
|
|
export { PinballBootMode } from './BootTypes';
|
||
|
|
export type {
|
||
|
|
PinballBootConfig,
|
||
|
|
PinballBootResult
|
||
|
|
} from './BootTypes';
|
||
|
|
export { PinballBootstrap } from './PinballBootstrap';
|
||
|
|
export { PinballBootUtils } from './PinballBootUtils';
|