Files
gridpilot.gg/apps/companion/main/automation/application/ports/CheckoutServicePort.ts
2025-12-23 11:25:08 +01:00

7 lines
269 B
TypeScript

import { Result } from '@core/shared/application/Result';
import type { CheckoutInfoDTO } from '../dto/CheckoutInfoDTO';
export interface CheckoutServicePort {
extractCheckoutInfo(): Promise<Result<CheckoutInfoDTO>>;
proceedWithCheckout(): Promise<Result<void>>;
}