8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
declare global {
|
|
interface Context {
|
|
url: URL;
|
|
state: Record<string, unknown>;
|
|
params: Record<string, string | undefined>;
|
|
}
|
|
}
|