@cparra/apex-reflection 2.9.2 → 2.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/index.d.ts +4 -1
  2. package/index.ts +5 -1
  3. package/out.js +5194 -5106
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -39,7 +39,7 @@ export interface Annotation {
39
39
  type: string;
40
40
  elementValues?: AnnotationElementValue[];
41
41
  }
42
- export type ReferencedType = ReferenceObjectType | ListObjectType | SetObjectType | MapObjectType;
42
+ export type ReferencedType = ReferenceObjectType | ListObjectType | SetObjectType | MapObjectType | GenericObjectType;
43
43
  export interface ReferenceObjectType {
44
44
  type: string;
45
45
  rawDeclaration: string;
@@ -54,6 +54,9 @@ export interface MapObjectType extends ReferenceObjectType {
54
54
  keyType: ReferenceObjectType;
55
55
  valueType: ReferenceObjectType;
56
56
  }
57
+ export interface GenericObjectType extends ReferenceObjectType {
58
+ ofType: ReferenceObjectType;
59
+ }
57
60
  export interface EnumValue {
58
61
  name: string;
59
62
  docComment?: DocComment;
package/index.ts CHANGED
@@ -52,7 +52,7 @@ export interface Annotation {
52
52
  elementValues?: AnnotationElementValue[];
53
53
  }
54
54
 
55
- export type ReferencedType = ReferenceObjectType | ListObjectType | SetObjectType | MapObjectType;
55
+ export type ReferencedType = ReferenceObjectType | ListObjectType | SetObjectType | MapObjectType | GenericObjectType;
56
56
 
57
57
  export interface ReferenceObjectType {
58
58
  type: string;
@@ -72,6 +72,10 @@ export interface MapObjectType extends ReferenceObjectType {
72
72
  valueType: ReferenceObjectType;
73
73
  }
74
74
 
75
+ export interface GenericObjectType extends ReferenceObjectType {
76
+ ofType: ReferenceObjectType;
77
+ }
78
+
75
79
  export interface EnumValue {
76
80
  name: string;
77
81
  docComment?: DocComment;