UNPKG

@lomray/microservice-payment-stripe

Version:

Stripe payment microservice based on NodeJS & inverted json.

12 lines (11 loc) 292 B
import TaxBehaviour from "../constants/tax-behaviour.js"; interface ITax { id: string; transactionAmountWithTaxUnit: number; expiresAt: Date; createdAt: Date; totalAmountUnit: number; totalTaxPercent: number; behaviour: TaxBehaviour; } export { ITax as default };