mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 08:53:25 +01:00
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
import {MObject} from "cad/model/mobject";
|
|
|
|
export type BooleanKind = 'NONE' | 'UNION' | 'SUBTRACT' | 'INTERSECT';
|
|
|
|
export interface BooleanDefinition {
|
|
|
|
kind: BooleanKind;
|
|
|
|
targets: MObject[];
|
|
|
|
}
|
|
|