UNPKG

assembly-payments

Version:
16 lines (15 loc) 432 B
import { Client } from '../client'; import { Address } from '../types'; declare const _default: (client: Client) => { /** * @description Show details of a specific Address using a given address `:id`. * * @tags Addresses * @name ShowAddress * @summary Show Address * @request GET:/addresses/{id} * @secure */ showAddress: (id: string) => Promise<Address>; }; export default _default;