box-node-sdk
Version:
Official SDK for Box Platform APIs
14 lines • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventStream = void 0;
const errors_1 = require("./errors");
class EventStream extends ReadableStream {
constructor(options) {
super();
throw new errors_1.BoxSdkError({
message: 'EventStream is not supported in the browser environment.',
});
}
}
exports.EventStream = EventStream;
//# sourceMappingURL=eventStreamBrowser.js.map