path-generator
Version:
A easy motion profile path generator
20 lines (19 loc) • 675 B
TypeScript
import HolonomicWaypoint from './waypoints/holonomic-waypoint';
import HolonomicPath from './path/holonomic-path';
import Waypoint from './waypoints/waypoint';
import PathConfig from './path/path-config';
import TankPath from './path/tank-path';
import * as Util from './util';
import Path from './path/path';
declare const Tank: {
Path: typeof TankPath;
PathConfig: typeof PathConfig;
Waypoint: typeof Waypoint;
};
declare const Holonomic: {
Waypoint: typeof HolonomicWaypoint;
Path: typeof HolonomicPath;
PathConfig: typeof PathConfig;
};
declare const driveTypes: string[];
export { PathConfig, Waypoint, Path, Util, Tank, Holonomic, driveTypes };