UNPKG

@plugnet/jsonrpc

Version:
8 lines (7 loc) 276 B
import { InterfaceTypes } from '@plugnet/types/types'; import { RpcParam } from '../types'; interface RpcParamOptions { isOptional?: boolean; } export default function createParam(name: string, type: InterfaceTypes, { isOptional }?: RpcParamOptions): RpcParam; export {};