noticeUwuzu/types/config.d.ts

18 lines
287 B
TypeScript

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