nhb-toolbox
Version:
A versatile collection of smart, efficient, and reusable utility functions and classes for everyday development needs.
154 lines • 3.49 kB
TypeScript
/** Western Seasons */
export declare const DEFAULT_SEASONS: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
/**Default Bangladeshi Seasons */
export declare const BANGLADESH_SEASONS: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
/** Indian Seasons */
export declare const INDIA_IMD_SEASONS: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
/** Indian Vedic Seasons */
export declare const INDIA_VEDIC_SEASONS: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
/** Indian Tamil Seasons */
export declare const INDIA_TAMIL_SEASONS: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
/** Philippines Seasons */
export declare const PHILIPPINES_SEASONS: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
/** US Academic Seasons */
export declare const US_ACADEMIC_SEASONS: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
/** Japanese Seasons */
export declare const JAPAN_SEASONS: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
/** Australian Seasons */
export declare const AUSTRALIA_SEASONS: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
/** Ethiopian Seasons */
export declare const ETHIOPIA_SEASONS: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
/** All the Season Presets for `new Chronos.season()` method */
export declare const SEASON_PRESETS: Readonly<{
readonly default: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
readonly bangladesh: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
readonly india: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
readonly tamil: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
readonly vedic: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
readonly philippines: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
readonly academic_us: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
readonly japan: readonly {
name: string;
boundary: {
startDate: string;
endDate: string;
};
}[];
readonly australia: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
readonly ethiopia: readonly {
name: string;
boundary: {
startMonth: number;
endMonth: number;
};
}[];
}>;
//# sourceMappingURL=seasons.d.ts.map