import { IStringDictionary } from "../../../../base/common/collections.js"; import type { SingleOrMany } from "../../../../base/common/types.js"; import { RawContextKey } from "../../../../platform/contextkey/common/contextkey.js"; import { IWorkspaceFolder } from "../../../../platform/workspace/common/workspace.js"; import { ConfiguringTask, ContributedTask, ITaskSet } from "./tasks.js"; export type { Task } from "./tasks.js"; export type { ITaskSummary, ITaskTerminateResponse as TaskTerminateResponse } from "@codingame/monaco-vscode-task-service-override/vscode/vs/workbench/contrib/tasks/common/taskSystem"; export declare const CustomExecutionSupportedContext: RawContextKey; export declare const ShellExecutionSupportedContext: RawContextKey; export declare const TaskCommandsRegistered: RawContextKey; export declare const ProcessExecutionSupportedContext: RawContextKey; export declare const ServerlessWebContext: RawContextKey; export declare const TasksAvailableContext: RawContextKey; export declare const TaskExecutionSupportedContext: import("../../../../platform/contextkey/common/contextkey.js").ContextKeyExpression | undefined; export interface ITaskProvider { provideTasks(validTypes: IStringDictionary): Promise; resolveTask(task: ConfiguringTask): Promise; } export interface IProblemMatcherRunOptions { attachProblemMatcher?: boolean; } export interface ICustomizationProperties { group?: string | { kind?: string; isDefault?: boolean; }; problemMatcher?: SingleOrMany; isBackground?: boolean; color?: string; icon?: string; inSessions?: boolean; } export interface ITaskFilter { version?: string; type?: string; task?: string; } interface IWorkspaceTaskResult { set: ITaskSet | undefined; configurations: { byIdentifier: IStringDictionary; } | undefined; hasErrors: boolean; } export interface IWorkspaceFolderTaskResult extends IWorkspaceTaskResult { workspaceFolder: IWorkspaceFolder; } export interface ITaskTerminalStatus { terminalId: number; status: string; }