Blame view

天文台pc/tianwentai-ui/node_modules/embla-carousel/cjs/components/Counter.d.ts 247 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
  export type CounterType = {
      get: () => number;
      set: (n: number) => CounterType;
      add: (n: number) => CounterType;
      clone: () => CounterType;
  };
  export declare function Counter(max: number, start: number, loop: boolean): CounterType;