Skip to content

Commit

Permalink
tests expect long to be generated as number
Browse files Browse the repository at this point in the history
  • Loading branch information
aldobrynin committed Oct 27, 2021
1 parent 167c4c4 commit 07b72ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

export type SimpleNullableRootType = {
long?: null | string;
uLong?: null | string;
long?: null | number;
uLong?: null | number;
int?: null | number;
uInt?: null | number;
short?: null | number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

export type SimpleRootType = {
long: string;
uLong: string;
long: number;
uLong: number;
int: number;
uInt: number;
short: number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

export type SimpleNullableRootType = {
long?: null | string;
uLong?: null | string;
long?: null | number;
uLong?: null | number;
int?: null | number;
uInt?: null | number;
short?: null | number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

export type SimpleRootType = {
long: string;
uLong: string;
long: number;
uLong: number;
int: number;
uInt: number;
short: number;
Expand Down

0 comments on commit 07b72ec

Please sign in to comment.