/** * Key-value storage to share data between visits * * @template T Type of the stored values */ export default class Context { protected storage: Map; put(key: string, value: T): void; get(key: string): T | undefined; } //# sourceMappingURL=Context.d.ts.map