import type { ServerContext, SessionContext } from "lib/session/type"; export const sessionContext = (sf: any) => { return sf as unknown as SessionContext; }; export const serverContext = (sf: any) => { return sf as unknown as ServerContext; };