UNPKG

@solana/rpc-types

Version:

Type definitions for values used in the Solana RPC, and helper functions for working with them

8 lines 208 B
import type { Slot } from './typed-numbers'; export type SolanaRpcResponse<TValue> = Readonly<{ context: Readonly<{ slot: Slot; }>; value: TValue; }>; //# sourceMappingURL=rpc-api.d.ts.map