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-cash.d.ts 297B

123456789
  1. import { Amount } from '../../common/types/objects';
  2. export declare type FormattedCheckCash = {
  3. checkID: string;
  4. amount: Amount;
  5. deliverMin: Amount;
  6. };
  7. declare function parseCheckCash(tx: any): FormattedCheckCash;
  8. export default parseCheckCash;
  9. //# sourceMappingURL=check-cash.d.ts.map