UNPKG

@gooddata/gooddata-js

Version:
17 lines (16 loc) 517 B
import { XhrModule } from "./xhr"; export declare class BootstrapModule { private xhr; constructor(xhr: XhrModule); /** * Returns information about currently logged in user from bootstrap resource * @method getBootstrapData */ getBootstrapData(): Promise<any>; /** * Returns the mapboxToken for using GeoPushpinChart * @method getMapboxToken * @param {any} bootstrapData - data from bootstrap resource */ getMapboxToken(bootstrapData: any): string | null; }