@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 +4 -1
- package/index.js +73 -42
- package/index.mjs +505 -430
- package/models/site.d.ts +4 -1
- package/package.json +1 -1
- package/types.d.ts +16 -0
package/bootstrap.d.ts
CHANGED
@@ -1,3 +1,6 @@
|
|
1
1
|
import { Environment } from './models/environment';
|
2
2
|
import { InitConfig } from './types';
|
3
|
-
|
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>;
|