volleyball-dev-frontend/node_modules/embla-carousel/cjs/components/Counter.d.ts
2025-06-02 16:42:16 +00:00

8 lines
247 B
TypeScript

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;