mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
12 lines
No EOL
174 B
TypeScript
12 lines
No EOL
174 B
TypeScript
import {Param} from "../shapes/param";
|
|
|
|
export interface SolvableObject {
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
export interface ISolveStage {
|
|
objects: Set<SolvableObject>;
|
|
index: number;
|
|
} |