Open
Description
Environment
not relevant
h3 version: 1.15.3
Reproduction
just look at the build output
Describe the bug
this is the type of useSession
declare function useSession<T extends SessionDataT = SessionDataT>(event: H3Event | CompatEvent, config: SessionConfig): Promise<{
readonly id: any;
readonly data: T;
update: (update: SessionUpdate<T>) => Promise</*elided*/ any>;
clear: () => Promise</*elided*/ any>;
}>;
but it should be circular like this
Lines 29 to 34 in 855efcb
Additional context
No response