UNPKG

bear-hackathon-ecology

Version:

TypeScript library providing ecological data and lifecycle information for Japanese Black Bears

13 lines (12 loc) 450 B
import type { MonthlyData, CycleData } from './types'; export declare class BearEcology { private monthlyData; private cycleData; constructor(); getMonthData(month: number): MonthlyData | undefined; getCycleData(cycleId: string): CycleData | undefined; getAllMonthlyData(): MonthlyData[]; getAllCycles(): CycleData[]; } export declare const bearEcology: BearEcology; export type { MonthlyData, CycleData } from './types';