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.

ticket.d.ts 364B

123456789
  1. import { Prepare, Instructions } from './types';
  2. import { RippleAPI } from '..';
  3. export interface Ticket {
  4. account: string;
  5. sequence: number;
  6. }
  7. declare function prepareTicketCreate(this: RippleAPI, address: string, ticketCount: number, instructions?: Instructions): Promise<Prepare>;
  8. export default prepareTicketCreate;
  9. //# sourceMappingURL=ticket.d.ts.map