2025-12-29 10:54:00 +08:00
|
|
|
/**
|
|
|
|
|
* @zh 操作模块导出
|
|
|
|
|
* @en Operations module exports
|
|
|
|
|
*/
|
|
|
|
|
|
2025-12-29 15:02:13 +08:00
|
|
|
export { BaseOperation } from './BaseOperation.js';
|
2025-12-29 10:54:00 +08:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
CurrencyOperation,
|
|
|
|
|
createCurrencyOperation,
|
|
|
|
|
type CurrencyOperationType,
|
|
|
|
|
type CurrencyOperationData,
|
|
|
|
|
type CurrencyOperationResult,
|
2025-12-29 15:02:13 +08:00
|
|
|
type ICurrencyProvider
|
|
|
|
|
} from './CurrencyOperation.js';
|
2025-12-29 10:54:00 +08:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
InventoryOperation,
|
|
|
|
|
createInventoryOperation,
|
|
|
|
|
type InventoryOperationType,
|
|
|
|
|
type InventoryOperationData,
|
|
|
|
|
type InventoryOperationResult,
|
|
|
|
|
type IInventoryProvider,
|
2025-12-29 15:02:13 +08:00
|
|
|
type ItemData
|
|
|
|
|
} from './InventoryOperation.js';
|
2025-12-29 10:54:00 +08:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
TradeOperation,
|
|
|
|
|
createTradeOperation,
|
|
|
|
|
type TradeOperationData,
|
|
|
|
|
type TradeOperationResult,
|
|
|
|
|
type TradeItem,
|
|
|
|
|
type TradeCurrency,
|
|
|
|
|
type TradeParty,
|
2025-12-29 15:02:13 +08:00
|
|
|
type ITradeProvider
|
|
|
|
|
} from './TradeOperation.js';
|