novx
    Preparing search index...

    Interface SessionEvent<U, T>

    covers the possible session events

    interface SessionEvent<U = any, T = any> {
        session: Session<U, T>;
        type: "opening" | "opened" | "closing" | "closed";
    }

    Type Parameters

    • U = any
    • T = any
    Index

    Properties

    Properties

    session: Session<U, T>
    type: "opening" | "opened" | "closing" | "closed"