9 lines
132 B
TypeScript
9 lines
132 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type Donation = {
|
|
id: number;
|
|
donor: string;
|
|
}
|