UNPKG

dop-sdk

Version:

Mini App SDK for JavaScript by VTB

8 lines (7 loc) 1.07 kB
import { AuthorizationFailureError, AudienceNotSupportedError, ScopesNotSupportedError } from './auth-errors'; import { DownloadFailedError, InvalidUrlError, SaveFailureError, DownloadHttpError } from './download-file-errors'; import { ConsumeFailedError, ProductNotFoundError, ProductPurchasedAlreadyError, PurchaseFailedError, UserCancelledPurchaseError } from './in-app-purchase-errors'; import { MiniAppError } from './mini-app-error'; import { SecureStorageBusyError, SecureStorageFullError, SecureStorageIOError, SecureStorageUnavailableError } from './secure-storage-errors'; declare function parseMiniAppError(jsonString: string): MiniAppError; export { AuthorizationFailureError, AudienceNotSupportedError, DownloadFailedError, DownloadHttpError, InvalidUrlError, MiniAppError, parseMiniAppError, SaveFailureError, ScopesNotSupportedError, SecureStorageFullError, SecureStorageBusyError, SecureStorageUnavailableError, SecureStorageIOError, PurchaseFailedError, ConsumeFailedError, ProductNotFoundError, ProductPurchasedAlreadyError, UserCancelledPurchaseError, };