Skip to content

Commit

Permalink
Merge pull request #25910 from Expensify/cmartins-updateTransactionType
Browse files Browse the repository at this point in the history
[NoQA] Update transaction type
  • Loading branch information
mountiny authored Aug 31, 2023
2 parents aae355b + aa1985d commit 3e69406
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/types/onyx/Transaction.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import {ValueOf} from 'type-fest';
import * as OnyxCommon from './OnyxCommon';
import CONST from '../../CONST';

type Comment = {
comment?: string;
Expand All @@ -17,6 +19,11 @@ type Transaction = {
modifiedAmount?: number;
modifiedCreated?: string;
modifiedCurrency?: string;
receipt: {
receiptID?: number;
source?: string;
state?: ValueOf<typeof CONST.IOU.RECEIPT_STATE>;
};
};

export default Transaction;

0 comments on commit 3e69406

Please sign in to comment.