/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ /** * AppKit - Core wallet management for TON dApps * * This is the main entry point for AppKit. It provides provider-agnostic * wallet management functionality. * * For TonConnect support, import from '@ton/appkit/tonconnect' separately. * This allows tree-shaking for users who don't need TonConnect. * * @example * ```ts * // Core AppKit (provider-agnostic) * import { AppKit } from '@ton/appkit'; * * // TonConnect feature (optional, for tree-shaking) * import { TonConnectConnector } from '@ton/appkit/tonconnect'; * ``` */ export * from './core/app-kit'; export * from './core/emitter'; export * from './core/network'; export * from './connectors/tonconnect'; export * from './swap'; export * from './actions'; export * from './types/connector'; export * from './types/balance'; export * from './types/wallet'; export * from './types/query'; export * from './types/utils'; export * from './types/network'; export * from './types/jetton'; export * from './types/nft'; export * from './types/transaction'; export * from './types/primitives'; export * from './types/signing'; export * from './utils'; //# sourceMappingURL=index.d.ts.map