Files
gridpilot.gg/apps/companion/main/automation/application/ports/CheckoutServicePort.ts
2026-01-16 13:48:18 +01:00

7 lines
264 B
TypeScript

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