7 lines
274 B
TypeScript
7 lines
274 B
TypeScript
import { Result } from '@gridpilot/shared/application/Result';
|
|
import type { CheckoutInfoDTO } from '../dto/CheckoutInfoDTO';
|
|
|
|
export interface CheckoutServicePort {
|
|
extractCheckoutInfo(): Promise<Result<CheckoutInfoDTO>>;
|
|
proceedWithCheckout(): Promise<Result<void>>;
|
|
} |