// Used by async_hooks to manipulate the async context export function getAsyncContext(): ReadonlyArray | undefined { return $getInternalField($asyncContext, 0); } export function setAsyncContext(contextValue: ReadonlyArray | undefined) { return $putInternalField($asyncContext, 0, contextValue); }