@aakash58/chatbot 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/aakash58-chatbot.mjs +169 -163
- package/fesm2022/aakash58-chatbot.mjs.map +1 -1
- package/index.d.ts +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { InjectionToken, ElementRef, Renderer2, OnInit, OnDestroy, SimpleChanges, EventEmitter, AfterContentInit, QueryList } from '@angular/core';
|
|
2
|
+
import { InjectionToken, ElementRef, Renderer2, OnInit, OnDestroy, SimpleChanges, EventEmitter, AfterContentInit, QueryList, EnvironmentProviders } from '@angular/core';
|
|
3
3
|
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
|
|
@@ -366,5 +366,8 @@ declare class DropdownMenu implements AfterContentInit {
|
|
|
366
366
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownMenu, "app-dropdown-menu", never, {}, {}, ["menuItems"], ["[trigger]", "*"], true, never>;
|
|
367
367
|
}
|
|
368
368
|
|
|
369
|
-
|
|
369
|
+
declare function initializeDoohbotApp(): () => Promise<any>;
|
|
370
|
+
declare function provideDoohbot(): EnvironmentProviders;
|
|
371
|
+
|
|
372
|
+
export { Chips, DOOHBOT_API_CONFIG, DialogComponent, DialogService, Doohbot, DoohbotConst, DoohbotInput, DropdownMenu, MenuItem, SnackBar, initializeApp, initializeDoohbotApp, provideDoohbot };
|
|
370
373
|
export type { DialogData, DoohbotApiConfig, DoohbotThemeConfig, TenantConfig };
|