// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. import { ProjectType } from "../utils/webview"; export interface JavaRuntimeEntry { name: string; fspath: string; type: string; majorVersion: number; } export interface JdkData { os: string; arch: string; name: string; size: string; downloadLink: string; } export interface ProjectRuntimeEntry { name: string; rootPath: string; runtimePath: string; sourceLevel: string; projectType: ProjectType; }