scout-types 1.0.10 → 1.0.11
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.
- package/dist/src/types/Scout.d.ts +1 -1
- package/package.json +1 -1
- package/src/types/Scout.ts +1 -1
|
@@ -22,7 +22,7 @@ export declare class Scout {
|
|
|
22
22
|
}
|
|
23
23
|
export declare class ScoutAux extends Scout {
|
|
24
24
|
readonly jurisdictions: Jurisdiction[];
|
|
25
|
-
readonly sub_scouts:
|
|
25
|
+
readonly sub_scouts: Scout[];
|
|
26
26
|
readonly photo_download_url?: string;
|
|
27
27
|
readonly tone_description?: string;
|
|
28
28
|
constructor(scout: any);
|
package/package.json
CHANGED
package/src/types/Scout.ts
CHANGED
|
@@ -62,7 +62,7 @@ export class Scout {
|
|
|
62
62
|
|
|
63
63
|
export class ScoutAux extends Scout {
|
|
64
64
|
readonly jurisdictions : Jurisdiction[]
|
|
65
|
-
readonly sub_scouts :
|
|
65
|
+
readonly sub_scouts : Scout[]
|
|
66
66
|
readonly photo_download_url? : string
|
|
67
67
|
readonly tone_description? : string
|
|
68
68
|
|