| 1 | 'use strict'; |
| 2 | |
| 3 | interface 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 | |
| 19 | interface SharedArrayBufferConstructor { |
| 20 | prototype: SharedArrayBuffer; |
nothing calls this directly
no outgoing calls
no test coverage detected