UNPKG

@salad-labs/loopz-typescript

Version:
15 lines 426 B
/** * Represents the fees associated with trading NFTs, including both a flat fee and a percentage fee. */ type Fee = { /** * @property {string} flatFee - An array of objects representing flat fees. */ flatFee: string; /** * @property {number} percentageFee - An array of objects representing percentage fees. */ percentageFee: number; }; export { Fee }; //# sourceMappingURL=fee.d.ts.map