mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-17 14:04:29 +01:00
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
export default {
|
|
sections: {
|
|
type: 'array',
|
|
itemType: 'loop',
|
|
initializeBySelection: true,
|
|
min: 2
|
|
},
|
|
boolean: {
|
|
type: 'enum',
|
|
values: ['INTERSECT', 'SUBTRACT', 'UNION'],
|
|
defaultValue: 'UNION',
|
|
optional: true
|
|
}
|
|
}
|