mango-v4/ts/client/src/types.ts

12 lines
223 B
TypeScript
Raw Normal View History

import { BN } from '@project-serum/anchor';
2022-06-23 01:19:33 -07:00
export class FlashLoanWithdraw {
static index: number;
static amount: BN;
}
export class FlashLoanType {
static unknown = { unknown: {} };
static swap = { swap: {} };
}