import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri'; export interface ILegacyWorkspace { /** * the full uri of the workspace. this is a file:// URL to the location * of the workspace on disk. */ resource: URI; /** * creation time of the workspace folder if known */ ctime?: number; }