feat(F-186): completed feature
This commit is contained in:
18
project/src/modules/pos/index.ts
Normal file
18
project/src/modules/pos/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
/** Public API of the POS module. */
|
||||
export { registerPosRoutes, type PosRouteDeps } from './api/pos.routes.js';
|
||||
export {
|
||||
CreatePosSaleUseCase,
|
||||
validatePaymentAllocations,
|
||||
type ConfiguredPaymentMethod,
|
||||
type ValidatedPayment,
|
||||
} from './application/create-pos-sale.js';
|
||||
export { buildPosReceipt } from './application/build-pos-receipt.js';
|
||||
export type {
|
||||
PosSaleInput,
|
||||
PosSaleResult,
|
||||
PosSaleLineInput,
|
||||
PosSaleLineItem,
|
||||
PosPaymentInput,
|
||||
PosPaymentResult,
|
||||
PosReceipt,
|
||||
} from './domain/pos-sale.js';
|
||||
Reference in New Issue
Block a user