first commit
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
李启源
2026-07-20 10:21:30 +08:00
commit ea832229da
75 changed files with 16864 additions and 0 deletions

View File

@@ -0,0 +1 @@
export * from './types'

View File

@@ -0,0 +1,23 @@
/**
* 数据系统类型定义
* 重新导出 src/types 中的类型,方便组件内部使用
*/
// 重新导出所有类型
export type {
WaveformPoint,
WaveformDisplayMode,
WaveformInteractionMode,
WaveformAnnotationStyle,
WaveformAnnotation,
WaveformRenderingOptions,
SingleWaveformData,
WaveformSeries,
WaveformData,
NormalizedWaveformSeries,
} from '../../types'
export type { WaveformGridOptions } from '../core/grid'
// 重新导出数据处理函数
export { normalizeWaveformData, normalizeWaveformSeries } from '../../core'