Skip to content

Commit

Permalink
Merge pull request #7 from jonashw/patch-1
Browse files Browse the repository at this point in the history
consistent int -> number translation in whatisgenerated.rst
  • Loading branch information
jburzynski committed Jan 24, 2024
2 parents f6f6a9b + 6e4dd0d commit 86b1afa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/whatisgenerated.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ All collection or nested collection types will be exported by TypeGen. E.g., for
export class MyClass {
intArray: number[];
intEnumerable: number[];
intEnumArrayCombo: int[][];
intEnumListArrayCombo: int[][][];
intEnumArrayCombo: number[][];
intEnumListArrayCombo: number[][][];
}
Base classes
Expand Down Expand Up @@ -257,4 +257,4 @@ From this code, the following TypeScript sources will be generated:
export class GenericClass<T> {
genericClassField: T;
}
}

0 comments on commit 86b1afa

Please sign in to comment.