14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
/**
|
|
* BGM API — 目录化入口
|
|
* 保持与原 bgm.ts 相同导出,向后兼容
|
|
*/
|
|
|
|
// 类型
|
|
export type { BgmCategory, BgmPreset, BgmPresetsQuery, BgmMixConfig } from "./types"
|
|
|
|
// 常量
|
|
export { DEFAULT_BGM_MIX_CONFIG } from "./constants"
|
|
|
|
// API 函数
|
|
export { getBgmPresets } from "./bgm"
|