UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

10 lines 479 B
import type { ENumberIdentifier } from "../../runtime/rtti-interop.js"; import type { IInteropBindings } from "../emscripten/i-interop-bindings.js"; /** * @public */ export interface ISharedArrayBindings extends IInteropBindings { _sharedArray_createOne(numberId: ENumberIdentifier, size: number, clearMemory: boolean): number; _sharedArray_getDataAddress(numberId: ENumberIdentifier, objPointer: number): number; } //# sourceMappingURL=i-shared-array-bindings.d.ts.map