UNPKG

@polkadot/jsonrpc

Version:
9 lines (8 loc) 300 B
import { InterfaceTypes } from '@polkadot/types/types'; import { RpcParam } from '../types'; interface RpcParamOptions { isOptional?: boolean; } /** @internal */ export default function createParam(name: string, type: keyof InterfaceTypes, { isOptional }?: RpcParamOptions): RpcParam; export {};