"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AsyncContext = void 0; // Stub implementation for AsyncContext class AsyncContext { get(key) { return undefined; } set(key, value) { // Do nothing } } exports.AsyncContext = AsyncContext; //# sourceMappingURL=async-context.js.map