@pismo/marola 2.1.38 → 2.1.39
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.
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export type Last4Digits = `${number}${number}${number}${number}`;
|
|
2
3
|
export interface BankingCardProps {
|
|
3
4
|
/** last 4 digits to display on the card */
|
|
4
5
|
last4Digits: Last4Digits;
|
|
5
6
|
/** expiry date to display on the card */
|
|
6
|
-
expiryDate:
|
|
7
|
+
expiryDate: React.ReactNode;
|
|
7
8
|
/** printed name on card */
|
|
8
9
|
printedName: string;
|
|
9
10
|
/** is true, then show skeleton */
|