mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-09 12:47:49 +00:00
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
/**
|
|
* ExtData is used to handle Extension Types that are not registered to ExtensionCodec.
|
|
*/
|
|
var ExtData = /** @class */ (function () {
|
|
function ExtData(type, data) {
|
|
this.type = type;
|
|
this.data = data;
|
|
}
|
|
return ExtData;
|
|
}());
|
|
export { ExtData };
|
|
//# sourceMappingURL=ExtData.mjs.map
|