mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 20:33:30 +01:00
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
export default {
|
|
sections: {
|
|
type: 'array',
|
|
itemType: 'loop',
|
|
defaultValue: {
|
|
type: 'selection',
|
|
}
|
|
},
|
|
boolean: {
|
|
type: 'enum',
|
|
values: ['INTERSECT', 'SUBTRACT', 'UNION'],
|
|
defaultValue: 'UNION',
|
|
optional: true
|
|
}
|
|
}
|