Variable exampleDataConst
exampleData: {
coop: {
city: string;
is_branched: boolean;
};
is_repeated: boolean;
meet: {
close_at_datetime: string;
open_at_datetime: string;
type: string;
};
meta: {
created_at: string;
};
questions: {
context: string;
decision: string;
number: string;
title: string;
}[];
user: {
full_name_or_short_name: string;
};
vars: {
full_abbr_genitive: string;
name: string;
};
} = ...
Type declaration
coop: {
city: string;
is_branched: boolean;
}
city: string
is_branched: boolean
is_repeated: boolean
meet: {
close_at_datetime: string;
open_at_datetime: string;
type: string;
}
close_at_datetime: string
open_at_datetime: string
type: string
meta: {
created_at: string;
}
questions: {
context: string;
decision: string;
number: string;
title: string;
}[]
user: {
full_name_or_short_name: string;
}
full_name_or_short_name: string
vars: {
full_abbr_genitive: string;
name: string;
}
full_abbr_genitive: string
name: string