UNPKG

@polkadot/jsonrpc

Version:
23 lines (20 loc) 462 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = createParam; // Copyright 2017-2020 @polkadot/jsonrpc authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. /** @internal */ function createParam(name, type, { isOptional = false } = { isOptional: false }) { return { isOptional, name, type }; }