Skip to content

Commit f8c5255

Browse files
[ts] Fix some types (MONEI#483)
1 parent b1e7a9e commit f8c5255

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1391,12 +1391,12 @@ declare namespace Shopify {
13911391
first_name: string;
13921392
id: number;
13931393
last_name: string;
1394-
latitude: string;
1395-
longitude: string;
1394+
latitude: number | null;
1395+
longitude: number | null;
13961396
name: string;
13971397
phone: string | null;
1398-
province: string;
1399-
province_code: string;
1398+
province: string | null;
1399+
province_code: string | null;
14001400
zip: string;
14011401
}
14021402

0 commit comments

Comments
 (0)