27 lines
493 B
JavaScript
27 lines
493 B
JavaScript
/**
|
|
* interact.js 1.10.27
|
|
*
|
|
* Copyright (c) 2012-present Taye Adeyemi <dev@taye.me>
|
|
* Released under the MIT License.
|
|
* https://raw.github.com/taye/interact.js/main/LICENSE
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
|
|
const defaults = {
|
|
base: {
|
|
preventDefault: 'auto',
|
|
deltaSource: 'page'
|
|
},
|
|
perAction: {
|
|
enabled: false,
|
|
origin: {
|
|
x: 0,
|
|
y: 0
|
|
}
|
|
},
|
|
actions: {}
|
|
};
|
|
export { defaults };
|
|
//# sourceMappingURL=options.js.map
|