File size: 184 Bytes
1ba2d7b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
// Stub implementation for AsyncContext
export class AsyncContext {
  get(key: string): any {
    return undefined;
  }

  set(key: string, value: any): void {
    // Do nothing
  }
}