noticeUwuzu/types/config.d.ts

20 lines
331 B
TypeScript

interface earthquakeTypes {
reconnectTimes: number;
websocketUrl: string;
areasCsvUrl: string;
maxScaleMax: number;
rateLimit: number;
}
interface weatherTypes {
splitCount: number;
}
export interface configTypes {
earthquake: earthquakeTypes;
weather: weatherTypes;
apiToken: string;
uwuzuServer: string;
}