Files
Webklar.com/node_modules/embla-carousel/cjs/components/Translate.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

8 lines
260 B
TypeScript

import { AxisType } from './Axis';
export type TranslateType = {
clear: () => void;
to: (target: number) => void;
toggleActive: (active: boolean) => void;
};
export declare function Translate(axis: AxisType, container: HTMLElement): TranslateType;