@duffel/components
Version:
Component library to build your travel product with Duffel.
11 lines (10 loc) • 456 B
TypeScript
import { createThreeDSecureSession } from "./functions/createThreeDSecureSession/createThreeDSecureSession";
import { hasService } from "./functions/hasService";
import { hasAvailableSeatService } from "./lib/hasAvailableSeatService";
declare global {
interface Window {
createThreeDSecureSession: typeof createThreeDSecureSession;
hasAvailableSeatService: typeof hasAvailableSeatService;
hasService: typeof hasService;
}
}