@tonkeeper/tonconnect-ui-react
Version:
> This is a Tonkeeper-maintained fork of the official [TonConnect UI React](https://github.com/ton-connect/sdk/tree/main/packages/ui-react) with additional features and improvements. While maintaining compatibility with the core TonConnect protocol.
8 lines (7 loc) • 367 B
TypeScript
import { TonConnectUIError } from '@tonkeeper/tonconnect-ui';
/**
* Base class for TonConnectUIReact errors. You can check if the error was triggered by the @tonconnect/ui-react using `err instanceof TonConnectUIReactError`.
*/
export declare class TonConnectUIReactError extends TonConnectUIError {
constructor(...args: ConstructorParameters<typeof Error>);
}