16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.GesturePropError = void 0;
|
||
|
|
||
|
class GesturePropError extends Error {
|
||
|
constructor(name, value, expectedType) {
|
||
|
super("Invalid property `".concat(name, ": ").concat(value, "` expected `").concat(expectedType, "`"));
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
exports.GesturePropError = GesturePropError;
|
||
|
//# sourceMappingURL=Errors.js.map
|