mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-06 04:21:14 +00:00
14 lines
367 B
JavaScript
14 lines
367 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ExtData = void 0;
|
|
/**
|
|
* ExtData is used to handle Extension Types that are not registered to ExtensionCodec.
|
|
*/
|
|
class ExtData {
|
|
constructor(type, data) {
|
|
this.type = type;
|
|
this.data = data;
|
|
}
|
|
}
|
|
exports.ExtData = ExtData;
|
|
//# sourceMappingURL=ExtData.js.map
|