diff --git a/src/types/onyx/Transaction.ts b/src/types/onyx/Transaction.ts index 0e0c7a423829..5a12dba352fc 100644 --- a/src/types/onyx/Transaction.ts +++ b/src/types/onyx/Transaction.ts @@ -1,4 +1,6 @@ +import {ValueOf} from 'type-fest'; import * as OnyxCommon from './OnyxCommon'; +import CONST from '../../CONST'; type Comment = { comment?: string; @@ -17,6 +19,11 @@ type Transaction = { modifiedAmount?: number; modifiedCreated?: string; modifiedCurrency?: string; + receipt: { + receiptID?: number; + source?: string; + state?: ValueOf; + }; }; export default Transaction;