Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00: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;