Translate.d.ts 260 B

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