mirror of
https://github.com/acamarata/moon-cycle.git
synced 2026-06-30 18:54:29 +00:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
// index.d.ts
|
|
declare module 'moon-cycle' {
|
|
export function cycleMonth(date: Date): MonthResult;
|
|
export function cycleYear(date: Date): YearResult;
|
|
|
|
interface MonthResult {
|
|
result: string;
|
|
}
|
|
interface YearResult {
|
|
result: string;
|
|
}
|
|
}
|