Skip to content

Commit

Permalink
Updating TS types
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarParra committed Sep 3, 2024
1 parent 1bda2a5 commit fef8f0d
Show file tree
Hide file tree
Showing 4 changed files with 264 additions and 270 deletions.
4 changes: 2 additions & 2 deletions js/apex-reflection-node/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export interface DocCommentAnnotation {
export interface DocComment {
rawDeclaration?: string;
paramAnnotations: ParamAnnotation[];
returnAnnotation: ReturnAnnotation;
exampleAnnotation: ExampleAnnotation;
returnAnnotation: ReturnAnnotation | null;
exampleAnnotation: ExampleAnnotation | null;
throwsAnnotations: ThrowsAnnotation[];
annotations: DocCommentAnnotation[];
descriptionLines: string[];
Expand Down
4 changes: 2 additions & 2 deletions js/apex-reflection-node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export interface DocCommentAnnotation {
export interface DocComment {
rawDeclaration?: string;
paramAnnotations: ParamAnnotation[];
returnAnnotation: ReturnAnnotation;
exampleAnnotation: ExampleAnnotation;
returnAnnotation: ReturnAnnotation | null;
exampleAnnotation: ExampleAnnotation | null;
throwsAnnotations: ThrowsAnnotation[];
annotations: DocCommentAnnotation[];
descriptionLines: string[];
Expand Down
2 changes: 1 addition & 1 deletion js/apex-reflection-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cparra/apex-reflection",
"version": "2.13.0",
"version": "2.13.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
Loading

0 comments on commit fef8f0d

Please sign in to comment.