Skip to content

Commit

Permalink
Merge pull request #27121 from Expensify/dsilva_addCheckForNumberOrSt…
Browse files Browse the repository at this point in the history
…ring

[NO QA] Changing types to accept both number and string on TS
  • Loading branch information
MonilBhavsar authored Sep 11, 2023
2 parents 96160a0 + fadfb92 commit f896f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/onyx/Response.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {OnyxUpdate} from 'react-native-onyx';

type Response = {
previousUpdateID?: number;
lastUpdateID?: number;
previousUpdateID?: number | string;
lastUpdateID?: number | string;
jsonCode?: number;
onyxData?: OnyxUpdate[];
requestID?: string;
Expand Down

0 comments on commit f896f71

Please sign in to comment.