renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
11 lines (10 loc) • 357 B
TypeScript
interface LambdaSchedule {
cycle: string;
/**
* Either `true` if currently in support or a string indicating the date at which support will end
*/
support: true | string;
}
export type LambdaData = Record<string, LambdaSchedule>;
export declare function findLambdaScheduleForVersion(version: string): LambdaSchedule | null;
export {};