UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

7 lines (6 loc) 245 B
import type { Date } from "@softwareventures/date"; export interface DateRange { readonly start?: Date | undefined; readonly end?: Date | undefined; } export declare function nodeReleasesSupportedInDateRange(dates: DateRange): string[];