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.

order.d.ts 370B

123456
  1. import { Instructions, Prepare } from './types';
  2. import { FormattedOrderSpecification } from '../common/types/objects/index';
  3. import { RippleAPI } from '..';
  4. declare function prepareOrder(this: RippleAPI, address: string, order: FormattedOrderSpecification, instructions?: Instructions): Promise<Prepare>;
  5. export default prepareOrder;
  6. //# sourceMappingURL=order.d.ts.map