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.
12 lines • 316 B
text/typescript
/**
* @internal
*/
export interface ITestOnlyBindings
{
fakeWorkerJob_resetCounts(): void;
fakeWorkerJob_getCreateCount(): number;
fakeWorkerJob_getTickCount(): number;
fakeWorkerJob_getDestroyCount(): number;
fakeWorkerJob_createJob(goSlow: boolean): number;
setTestCategoryFlag(): void;
}