Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

- Declaration

public awaitAuthentication(): Promise<CavrnusApiUser>

- Description

Returns an promise of type CavrnusApiUser when authentication is complete.

- Sample

import { CavrnusSpatialConnector } from "../services/csc";
function async awaitSpaceLoad()
{
    const csc = new CavrnusSpatialConnector();
	try
	{
		const spaceId = await csc.awaitAuthentication();
	}
	catch (err)
	{
		throw err;
	}
}
  • No labels