import { Context } from 'koa'; export type AdminUser = { id: string | number; email: string; username: string; avatar?: string; }; export type RequestContext