Variable exampleDataConst
exampleData: {
appendix: {
number: string;
};
contribution: {
amount: string;
currency: string;
words: string;
};
coop: {
chairman_full_name: string;
full_name: string;
short_name: string;
};
uhdContract: {
date: string;
number: string;
};
user: {
full_name: string;
};
} = ...
Type declaration
appendix: {
number: string;
}
contribution: {
amount: string;
currency: string;
words: string;
}
amount: string
currency: string
words: string
coop: {
chairman_full_name: string;
full_name: string;
short_name: string;
}
chairman_full_name: string
full_name: string
short_name: string
uhdContract: {
date: string;
number: string;
}
date: string
number: string
user: {
full_name: string;
}