@vergelijkdirect/comparison-forms 2.0.0-rc.26 → 2.0.0-rc.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -294,9 +294,9 @@ declare interface AddressBearingFormData {
|
|
|
294
294
|
}
|
|
295
295
|
|
|
296
296
|
declare interface AddressData {
|
|
297
|
-
zipCode
|
|
298
|
-
houseNumber
|
|
299
|
-
houseNumberAddition
|
|
297
|
+
zipCode: string;
|
|
298
|
+
houseNumber: string;
|
|
299
|
+
houseNumberAddition: string;
|
|
300
300
|
city?: string;
|
|
301
301
|
street?: string;
|
|
302
302
|
}
|
|
@@ -538,7 +538,7 @@ export declare const LoanForm: typeof __VLS_export_9;
|
|
|
538
538
|
|
|
539
539
|
export declare interface LoanFormData extends BirthdateFormData, FamilyCompositionFormData {
|
|
540
540
|
LoanPurpose: string;
|
|
541
|
-
LoanAmount: number
|
|
541
|
+
LoanAmount: number;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
544
|
export declare function loanPresenter(data: LoanFormData): ComparisonPayload;
|