UNPKG

alinea

Version:
9 lines (8 loc) 255 B
import type { ComponentType } from 'react'; import type { Session } from './Session.js'; export declare namespace Auth { type ViewProps = { setSession: (session: Session | undefined) => void; }; type View = ComponentType<ViewProps>; }