MCPcopy
hub / github.com/plasma-umass/browsix / SharedArrayBuffer

Interface SharedArrayBuffer

src/hello-sync/hello-sync.ts:3–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1'use strict';
2
3interface SharedArrayBuffer {
4 /**
5 * Read-only. The length of the ArrayBuffer (in bytes).
6 */
7 byteLength: number;
8
9 /*
10 * The SharedArrayBuffer constructor's length property whose value is 1.
11 */
12 length: number;
13 /**
14 * Returns a section of an SharedArrayBuffer.
15 */
16 slice(begin: number, end?: number): SharedArrayBuffer;
17}
18
19interface SharedArrayBufferConstructor {
20 prototype: SharedArrayBuffer;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected