UNPKG

data-validator-js

Version:
13 lines (12 loc) 439 B
import { Customer, Product } from './index'; export default class Transaction { id: string; products: Product[]; totalAmount: number; paidWith: string; dueAmount: number; customerId: string; customer: Customer; transactionDate: Date; constructor(id: string, products: Product[], totalAmount: number, paidWith: string, dueAmount: number, customerId: string, customer: Customer, transactionDate: Date); }