From a5ee0fbff32d28b24098ae9c29722ff34496ebe3 Mon Sep 17 00:00:00 2001 From: Sergey Uchaev Date: Sat, 30 Dec 2023 15:15:55 +0300 Subject: [PATCH] test --- packages/cards/src/types/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/cards/src/types/index.ts b/packages/cards/src/types/index.ts index 24866fe..44a565b 100644 --- a/packages/cards/src/types/index.ts +++ b/packages/cards/src/types/index.ts @@ -12,16 +12,16 @@ export type CardDetails = { recentTransactions: Transaction[]; }; -export type Transaction = { - date: string; - amount: string; - currency: string; - description: string; -}; - export type CardInfo = { id: number; pan: string; expiry: string; name: string; }; + +export type Transaction = { + date: string; + amount: string; + currency: string; + description: string; +};