Type alias Session<S>

Session<S>: {
    session:create: {
        session: S;
    };
    session:destroy: {
        username: string;
    };
}

Type Parameters

  • S

Type declaration

  • session:create: {
        session: S;
    }
    • session: S
  • session:destroy: {
        username: string;
    }
    • username: string

Generated using TypeDoc