generated from nhcarrigan/template
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
/**
|
||||
* @copyright NHCarrigan
|
||||
* @license Naomi's Public License
|
||||
* @author Naomi Carrigan
|
||||
*/
|
||||
|
||||
/* eslint-disable @typescript-eslint/naming-convention -- Baserow returns this. */
|
||||
|
||||
export interface MentorshipRow {
|
||||
count: number;
|
||||
next: unknown;
|
||||
previous: unknown;
|
||||
results: Array<{
|
||||
"id": number;
|
||||
"order": string;
|
||||
"Email Address": string;
|
||||
"First Name": string;
|
||||
"Last Name": string;
|
||||
"Company": string;
|
||||
"Consent to Reply": {
|
||||
id: number;
|
||||
value: string;
|
||||
color: string;
|
||||
};
|
||||
"Status": {
|
||||
id: number;
|
||||
value: string;
|
||||
color: string;
|
||||
};
|
||||
"Focus": string;
|
||||
"Current": string;
|
||||
"Free": {
|
||||
id: number;
|
||||
value: string;
|
||||
color: string;
|
||||
};
|
||||
"Pronouns": string;
|
||||
"Discord ID": string;
|
||||
"Donation?": {
|
||||
id: number;
|
||||
value: string;
|
||||
color: string;
|
||||
};
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user