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.
14 lines (12 loc) • 427 B
text/typescript
import type { ISharedArrayBindings } from "./shared-array/i-shared-array-bindings.js";
import type { IWorkerPoolBindings } from "./worker-pool/i-worker-pool-bindings.js";
import type { IResizableArrayBindings } from "./resizable-array/i-resizable-array-bindings.js";
/**
* @public
*/
export interface IJsUtilBindings
extends ISharedArrayBindings,
IResizableArrayBindings,
IWorkerPoolBindings
{
}