box-node-sdk
Version:
Official SDK for Box Platform APIs
15 lines (13 loc) • 327 B
text/typescript
import { BoxSdkError } from './errors';
export class EventStream extends ReadableStream<any> {
constructor(options: {
eventsManager: any;
queryParams: any;
headersInput: any;
}) {
super();
throw new BoxSdkError({
message: 'EventStream is not supported in the browser environment.',
});
}
}