Blame view

天文台pc/tianwentai-ui/node_modules/embla-carousel/components/Vector1d.d.ts 265 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
  export type Vector1DType = {
      get: () => number;
      set: (n: Vector1DType | number) => void;
      add: (n: Vector1DType | number) => void;
      subtract: (n: Vector1DType | number) => void;
  };
  export declare function Vector1D(initialValue: number): Vector1DType;