mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import {ConstantsDefinitions} from "../../sketcher/constr/ANConstraints";
|
|
|
|
export interface AssemblyConstraintDefinition {
|
|
|
|
typeId: string;
|
|
|
|
objects: string[];
|
|
|
|
constants: ConstantsDefinitions
|
|
}
|