Skip to content

Commit

Permalink
changing types to accept both number and string
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldoglas committed Sep 11, 2023
1 parent 4abaeba commit fadfb92
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 fadfb92

Please sign in to comment.