@gecogvidanto/plugin-barter
Version:
Barter system plugin for ĞecoĞvidanto
12 lines (11 loc) • 376 B
TypeScript
import { EconomicSystemPlugin } from '@gecogvidanto/plugin';
import BarterSystem from './BarterSystem';
/**
* Barter plugin manage a barter economic system for ĞecoĞvidanto.
*/
export default class BarterPlugin implements EconomicSystemPlugin {
private readonly barterSystem;
constructor();
ready(): Promise<void>;
openEconomicSystems(): [BarterSystem];
}