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.
13 lines (10 loc) • 428 B
text/typescript
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;
}