tickera-angular-components 0.0.1-dev.148 → 0.0.1-dev.149
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.
package/index.d.ts
CHANGED
|
@@ -4034,6 +4034,7 @@ declare class VipCardStatusBadgeComponent {
|
|
|
4034
4034
|
|
|
4035
4035
|
declare class VipRechargeModalComponent {
|
|
4036
4036
|
private fb;
|
|
4037
|
+
protected transloco: TranslocoService;
|
|
4037
4038
|
title: string;
|
|
4038
4039
|
submitLabel: string;
|
|
4039
4040
|
loading: boolean;
|
|
@@ -4044,7 +4045,11 @@ declare class VipRechargeModalComponent {
|
|
|
4044
4045
|
amount: number;
|
|
4045
4046
|
}>;
|
|
4046
4047
|
rechargeForm: FormGroup;
|
|
4047
|
-
|
|
4048
|
+
paymentMethodOptions: {
|
|
4049
|
+
label: string;
|
|
4050
|
+
value: string;
|
|
4051
|
+
}[];
|
|
4052
|
+
constructor(fb: FormBuilder, transloco: TranslocoService);
|
|
4048
4053
|
onClose(): void;
|
|
4049
4054
|
onSubmit(): void;
|
|
4050
4055
|
static ɵfac: i0.ɵɵFactoryDeclaration<VipRechargeModalComponent, never>;
|