28 lines
973 B
TypeScript
28 lines
973 B
TypeScript
import { renderDisplayTypeEnum, componentSignEnum, Ianalytics } from '../../types';
|
|
export declare const getAppPath: (environment: string, appVersion: string, componentSign: componentSignEnum, productSceneVersion: string, extendInfo: string) => any;
|
|
export declare const getAppDomain: (domainParams: {
|
|
environment: string;
|
|
appVersion: string;
|
|
componentSign: componentSignEnum;
|
|
productSceneVersion: string;
|
|
extendInfo: string;
|
|
}) => string;
|
|
export declare const getIframeUrl: (iframeParams: {
|
|
componentSign: componentSignEnum;
|
|
analytics?: Ianalytics;
|
|
productSceneVersion: string;
|
|
environment: string;
|
|
appVersion: string;
|
|
extendInfo: string;
|
|
locale: string;
|
|
instanceId: string;
|
|
renderDisplayType: renderDisplayTypeEnum;
|
|
}) => {
|
|
path: string;
|
|
locationSearch: string;
|
|
};
|
|
/**
|
|
* @description Create iframe
|
|
*/
|
|
export declare const createIframe: (mode: string, platform: 'mobile' | 'desktop') => HTMLIFrameElement;
|