isLoggedIn (Javascript)

- Declaration

public isLoggedIn(): boolean

- Description

Checks if there is a user logged into the current instance of the csc.

- Sample

import { CavrnusSpatialConnector } from "../services/csc"; const csc = new CavrnusSpatialConnector(); try { const isLoggedIn: boolean = await csc.isLoggedIn(); } catch (err) { throw err; }