mirror of
https://github.com/xibyte/jsketcher
synced 2026-01-04 14:59:32 +01:00
22 lines
No EOL
321 B
JavaScript
22 lines
No EOL
321 B
JavaScript
export default {
|
|
datum: {
|
|
type: 'datum',
|
|
optional: true,
|
|
defaultValue: {type: 'selection'}
|
|
},
|
|
width: {
|
|
type: 'number',
|
|
defaultValue: 500,
|
|
min: 0
|
|
},
|
|
height: {
|
|
type: 'number',
|
|
defaultValue: 500,
|
|
min: 0
|
|
},
|
|
depth: {
|
|
type: 'number',
|
|
defaultValue: 500,
|
|
min: 0
|
|
}
|
|
} |