mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 02:13:58 +01:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
export default defaultValue => ({
|
|
operandA: {
|
|
type: 'shell',
|
|
defaultValue: {type: 'selection'}
|
|
},
|
|
operandB: {
|
|
type: 'shell',
|
|
defaultValue: {type: 'selection'}
|
|
},
|
|
type: {
|
|
type: 'enum',
|
|
values: ['INTERSECT', 'SUBTRACT', 'UNION'],
|
|
defaultValue
|
|
}
|
|
})
|