15 lines
No EOL
240 B
TypeScript
15 lines
No EOL
240 B
TypeScript
//
|
|
// types.d.ts
|
|
//
|
|
// Written by: Tyler Akins (2020/01/06 - 2020/01/18)
|
|
//
|
|
|
|
|
|
interface data {
|
|
[key: string]: {
|
|
max: [string, number];
|
|
donations: number[];
|
|
total_bits: number;
|
|
donators: string[];
|
|
};
|
|
} |