mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 18:02:50 +01:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
export default {
|
|
sections: {
|
|
type: 'array',
|
|
itemType: 'loop',
|
|
initializeBySelection: true
|
|
},
|
|
boolean: {
|
|
type: 'enum',
|
|
values: ['INTERSECT', 'SUBTRACT', 'UNION'],
|
|
defaultValue: 'UNION',
|
|
optional: true
|
|
}
|
|
}
|