rspace-online/types/hono.d.ts

10 lines
144 B
TypeScript

import 'hono';
declare module 'hono' {
interface ContextVariableMap {
effectiveSpace: string;
spaceRole: string;
isOwner: boolean;
}
}