ultrawidify/src/common/enums/stretch.enum.js

12 lines
162 B
JavaScript
Raw Normal View History

2019-01-20 22:59:06 +01:00
var Stretch = Object.freeze({
NoStretch: 0,
Basic: 1,
Hybrid: 2,
Conditional: 3,
Fixed: 4,
FixedSource: 5,
2019-01-20 22:59:06 +01:00
Default: -1
});
export default Stretch;