@telia-ace/widget-core-flamingo 1.1.75 → 1.1.76-rc.0

Sign up to get free protection for your applications and to get access to all the features.
package/bootstrap.d.ts CHANGED
@@ -1,3 +1,6 @@
1
1
  import { Environment } from './models/environment';
2
2
  import { InitConfig } from './types';
3
- export declare const bootstrap: (urlOrConfig: string | InitConfig, handler: (environment: Environment) => void) => Promise<void>;
3
+ import { IHttpClient } from './services/http-client.service';
4
+ export declare const bootstrap: (urlOrConfig: string | InitConfig, handler: (environment: Environment) => void, config?: {
5
+ httpClient?: IHttpClient;
6
+ }) => Promise<void>;