Files
gridpilot.gg/packages/automation/application/ports/CheckoutServicePort.ts
2025-12-04 15:15:24 +01:00

7 lines
267 B
TypeScript

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