7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
type Context = {
|
|
headers?: Record<string, string>;
|
|
};
|
|
export declare const SYMBOL_FOR_REQ_CONTEXT: unique symbol;
|
|
export declare function getContext(): Context;
|
|
export {};
|