step-sequence-generator
Version:
A step sequence generator for figure skating programs
8 lines (7 loc) • 564 B
TypeScript
import { AxisType, CursorValueType, VectorCursorType } from '../../shared/types/vector.type';
import { DescartesCoordinatesType } from '../../shared/types/descartes-coordinates.type';
declare function createCoordinates(x: number, y: number): DescartesCoordinatesType;
declare function createCoord<T>(axis: AxisType, coord: number): T;
declare function createVectorCursor(x: CursorValueType, y: CursorValueType): VectorCursorType;
declare function createCursor<T>(n: CursorValueType): T;
export { createCoordinates, createVectorCursor, createCoord, createCursor };