NeahFront2/node_modules/embla-carousel/components/Vector1d.d.ts
2025-04-08 20:36:59 +02:00

8 lines
265 B
TypeScript

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;