@koredev/kore-web-sdk 11.7.1-rc.9fd0205 → 11.7.1-rc.a75c3db

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.
@@ -0,0 +1,10 @@
1
+ import BaseChatTemplate from '../baseChatTemplate';
2
+ import './article.scss';
3
+ import { h } from 'preact';
4
+ export declare function Article(props: any): h.JSX.Element;
5
+ export declare function TemplateArticle(props: any): h.JSX.Element | undefined;
6
+ declare class ArticleTemplate extends BaseChatTemplate {
7
+ hostInstance: any;
8
+ renderMessage(msgData: any): ChildNode;
9
+ }
10
+ export default ArticleTemplate;
@@ -0,0 +1,10 @@
1
+ import BaseChatTemplate from '../baseChatTemplate';
2
+ import './otp.scss';
3
+ import { h } from 'preact';
4
+ export declare function OTPExt(props: any): h.JSX.Element;
5
+ export declare function OTP(props: any): h.JSX.Element | undefined;
6
+ declare class OTPTemplate extends BaseChatTemplate {
7
+ hostInstance: any;
8
+ renderMessage(msgData: any): ChildNode;
9
+ }
10
+ export default OTPTemplate;
@@ -0,0 +1,10 @@
1
+ import BaseChatTemplate from '../baseChatTemplate';
2
+ import './resetPin.scss';
3
+ import { h } from 'preact';
4
+ export declare function Reset(props: any): h.JSX.Element;
5
+ export declare function ResetPin(props: any): h.JSX.Element | undefined;
6
+ declare class ResetPinTemplate extends BaseChatTemplate {
7
+ hostInstance: any;
8
+ renderMessage(msgData: any): ChildNode;
9
+ }
10
+ export default ResetPinTemplate;