Skip to content

Commit 3b09680

Browse files
chore: lint
1 parent 4d271c1 commit 3b09680

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/upgrade/type.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33

44
export type UpgradeTarget = { name: string; description: string };
55
export type DependencyCheckItemBase = { name: string, reason: UpgradeReason, suggestedVersion: UpgradeTarget };
6-
export type DependencyCheckItemEol = DependencyCheckItemBase & { reason: UpgradeReason.END_OF_LIFE, supportedVersion: string, eolDate: Record<string, string> };
6+
export type DependencyCheckItemEol = DependencyCheckItemBase & {
7+
reason: UpgradeReason.END_OF_LIFE,
8+
supportedVersion: string,
9+
eolDate: Record<string, string>
10+
};
711
export type DependencyCheckItemJreTooOld = DependencyCheckItemBase & { reason: UpgradeReason.JRE_TOO_OLD };
812
export type DependencyCheckItemDeprecated = DependencyCheckItemBase & { reason: UpgradeReason.DEPRECATED };
913
export type DependencyCheckItem = (DependencyCheckItemEol | DependencyCheckItemJreTooOld | DependencyCheckItemDeprecated);

0 commit comments

Comments
 (0)