37 lines
820 B
TypeScript
37 lines
820 B
TypeScript
|
|
/**
|
||
|
|
* @zh 操作模块导出
|
||
|
|
* @en Operations module exports
|
||
|
|
*/
|
||
|
|
|
||
|
|
export { BaseOperation } from './BaseOperation.js'
|
||
|
|
|
||
|
|
export {
|
||
|
|
CurrencyOperation,
|
||
|
|
createCurrencyOperation,
|
||
|
|
type CurrencyOperationType,
|
||
|
|
type CurrencyOperationData,
|
||
|
|
type CurrencyOperationResult,
|
||
|
|
type ICurrencyProvider,
|
||
|
|
} from './CurrencyOperation.js'
|
||
|
|
|
||
|
|
export {
|
||
|
|
InventoryOperation,
|
||
|
|
createInventoryOperation,
|
||
|
|
type InventoryOperationType,
|
||
|
|
type InventoryOperationData,
|
||
|
|
type InventoryOperationResult,
|
||
|
|
type IInventoryProvider,
|
||
|
|
type ItemData,
|
||
|
|
} from './InventoryOperation.js'
|
||
|
|
|
||
|
|
export {
|
||
|
|
TradeOperation,
|
||
|
|
createTradeOperation,
|
||
|
|
type TradeOperationData,
|
||
|
|
type TradeOperationResult,
|
||
|
|
type TradeItem,
|
||
|
|
type TradeCurrency,
|
||
|
|
type TradeParty,
|
||
|
|
type ITradeProvider,
|
||
|
|
} from './TradeOperation.js'
|