11 lines
462 B
TypeScript
11 lines
462 B
TypeScript
|
|
export * from './Bill/BillDescription';
|
||
|
|
export * from './Customer/CustomerDescription';
|
||
|
|
export * from './Employee/EmployeeDescription';
|
||
|
|
export * from './Estimate/EstimateDescription';
|
||
|
|
export * from './Invoice/InvoiceDescription';
|
||
|
|
export * from './Item/ItemDescription';
|
||
|
|
export * from './Payment/PaymentDescription';
|
||
|
|
export * from './Vendor/VendorDescription';
|
||
|
|
export * from './Purchase/PurchaseDescription';
|
||
|
|
export * from './Transaction/TransactionDescription';
|