You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

check-create.d.ts 366B

1234567891011
  1. import { Amount } from '../../common/types/objects';
  2. export declare type FormattedCheckCreate = {
  3. destination: string;
  4. sendMax: Amount;
  5. destinationTag?: string;
  6. expiration?: string;
  7. invoiceID?: string;
  8. };
  9. declare function parseCheckCreate(tx: any): FormattedCheckCreate;
  10. export default parseCheckCreate;
  11. //# sourceMappingURL=check-create.d.ts.map