bear-hackathon-ecology
Version:
TypeScript library providing ecological data and lifecycle information for Japanese Black Bears
19 lines (18 loc) • 401 B
TypeScript
export interface MonthlyData {
month: number;
dangerous_level: number;
chance_of_encounter: number;
current_cycle: string;
}
export interface CycleData {
id: string;
title: string;
start_month: number;
end_month: number;
description: string;
activity: string;
characteristics: string[];
foods: string[];
location: string[];
caution: string[];
}