- fetchBrandData(brandJsonUrl?: string, themeVersion?: number, cache?: boolean): Promise<{
bootstrap: string;
id: string;
logo: string;
name: string;
} | undefined>
-
Parameters
-
brandJsonUrl: string = 'brand.json'
-
themeVersion: number = 1
-
cache: boolean = true
Returns Promise<{
bootstrap: string;
id: string;
logo: string;
name: string;
} | undefined>
Fetch brand JSON file, parse it and then fetch logo and Bootstrap theme and add it to that object.
Returns
The brand object with the logo and Bootstrap theme URLs.