Files
gridpilot.gg/apps/companion/main/automation/application/ports/CheckoutServicePort.ts

7 lines
269 B
TypeScript

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