Add missing $body type from koa context

This commit is contained in:
Kuba Orlik 2024-04-09 15:31:21 +02:00
parent 482091c979
commit df70ce1e40

View File

@ -20,6 +20,7 @@ declare module "koa" {
interface BaseContext {
$context: SealiousContext;
$app: TheApp;
$body: Record<string, unknown>;
}
}