graphql
Version:
A Query Language and Runtime which can target any service.
6 lines (5 loc) • 430 B
text/typescript
/** @category Execution */
import type { SharedExecutionContext } from "./createSharedExecutionContext.mjs";
import type { AsyncWorkFinishedInfo, ValidatedExecutionArgs } from "./ExecutionArgs.mjs";
/** @internal */
export declare function runAsyncWorkFinishedHook(validatedExecutionArgs: ValidatedExecutionArgs, sharedExecutionContext: SharedExecutionContext, asyncWorkFinishedHook: (info: AsyncWorkFinishedInfo) => void): void;