elections-types 1.0.40 → 1.0.41
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.
|
@@ -18,7 +18,7 @@ export declare class Election {
|
|
|
18
18
|
constructor(election: any);
|
|
19
19
|
static is(election: any): election is Election;
|
|
20
20
|
}
|
|
21
|
-
export declare class ElectionAux extends
|
|
21
|
+
export declare class ElectionAux extends Election {
|
|
22
22
|
readonly candidates: Candidate[];
|
|
23
23
|
readonly committees: Committee[];
|
|
24
24
|
constructor(election: any);
|
|
@@ -50,7 +50,7 @@ export class Election {
|
|
|
50
50
|
(election.committee_ids === undefined || Array.isArray(election.committee_ids) && election.committee_ids.every((committee_id) => typeof committee_id === "string")));
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
|
-
export class ElectionAux extends
|
|
53
|
+
export class ElectionAux extends Election {
|
|
54
54
|
candidates;
|
|
55
55
|
committees;
|
|
56
56
|
constructor(election) {
|
package/package.json
CHANGED