/** * Interface matching the subset of AsyncLocalStorage API we use. */ export interface IAsyncLocalStorage { run(store: T, fn: () => R): R getStore(): T | undefined }