10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
interface DriverInfo {
|
|
dateOfBirth?: Date | null;
|
|
licenseIssuedAt?: Date | null;
|
|
}
|
|
export declare function applyPricingRules(companyId: string, customerId: string, additionalDrivers: DriverInfo[], dailyRate: number, totalDays: number): Promise<{
|
|
applied: any[];
|
|
total: number;
|
|
}>;
|
|
export {};
|
|
//# sourceMappingURL=pricingRuleService.d.ts.map
|