@salusoft89/planegcs
Version:
A wasm build and a simple wrapper of the FreeCAD PlaneGCS (2D geometric constraint solver)
9 lines (7 loc) • 359 B
TypeScript
import { GcsSystemConstructor, DoubleVectorConstructor, IntVectorConstructor } from "../planegcs_dist/gcs_system";
export interface ModuleStatic {
GcsSystem: GcsSystemConstructor;
IntVector: IntVectorConstructor;
DoubleVector: DoubleVectorConstructor;
}
export default function Module(config?: {locateFile: () => string}): Promise<ModuleStatic>;