multichain-api
Version:
MultiChain JSON-RPC Client
21 lines (20 loc) • 599 B
TypeScript
import { RpcRequest } from '../RpcRequest';
import { RpcResponse } from '../RpcResponse';
/**
* JSON-RPC request for the *createfrom* command.
*/
export interface CreateFromRequest extends RpcRequest {
readonly method: 'createfrom';
readonly params?: any[];
}
/**
* JSON-RPC response for the *createfrom* command.
*/
export interface CreateFromResponse extends RpcResponse {
readonly result: CreateFromResult | null;
}
/**
* Result of the *createfrom* command.
*/
export declare type CreateFromResult = any;
export declare function CreateFrom(...params: any[]): CreateFromRequest;