utils.d.ts 254 B

123456789101112
  1. import { BulletOptions } from './types';
  2. type TransformData = {
  3. min: number;
  4. max: number;
  5. ds: any[];
  6. };
  7. /**
  8. * bullet 处理数据
  9. * @param options
  10. */
  11. export declare function transformData(options: BulletOptions): TransformData;
  12. export {};