/** * Outcome calculation result */ export interface OutcomeResult { /** High pool outcome based on current price */ highOutcome: number; /** Low pool outcome based on current price */ lowOutcome: number; /** Current price in cents */ priceInCents: number; }