Variable exampleDataConst
exampleData: {
coop: { city: string; is_branched: boolean };
decision: { id: string };
meet: {
close_at_datetime: string;
current_quorum_percent: number;
open_at_datetime: string;
presider_full_name: string;
secretary_full_name: string;
type: string;
};
meta: { created_at: string };
questions: {
context: string;
counter_votes_abstained: string;
counter_votes_against: string;
counter_votes_for: string;
decision: string;
is_accepted: boolean;
number: string;
title: string;
votes_abstained_percent: number;
votes_against_percent: number;
votes_for_percent: number;
votes_total: number;
}[];
vars: { full_abbr_genitive: string; name: string };
} = ...
Type Declaration
coop: { city: string; is_branched: boolean }
decision: { id: string }
meet: {
close_at_datetime: string;
current_quorum_percent: number;
open_at_datetime: string;
presider_full_name: string;
secretary_full_name: string;
type: string;
}
questions: {
context: string;
counter_votes_abstained: string;
counter_votes_against: string;
counter_votes_for: string;
decision: string;
is_accepted: boolean;
number: string;
title: string;
votes_abstained_percent: number;
votes_against_percent: number;
votes_for_percent: number;
votes_total: number;
}[]
vars: { full_abbr_genitive: string; name: string }