/** * The type of deeplink action that was executed by the host */ type ActionOpenUrlType = 'DeepLinkDialog' | 'DeepLinkOther' | 'DeepLinkStageView' | 'GenericUrl'; /** * The type of deeplink action that was executed by the host */ declare enum ActionOpenUrlTypes { DeepLinkDialog = "DeepLinkDialog", DeepLinkOther = "DeepLinkOther", DeepLinkStageView = "DeepLinkStageView", GenericUrl = "GenericUrl" } export { type ActionOpenUrlType, ActionOpenUrlTypes };