/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ declare module 'vscode' { export interface ChatPromptReference { /** * The value of this reference. The `string | Uri | Location` types are used today, but this could expand in the future. */ readonly value: string | Uri | Location | ChatReferenceBinaryData | unknown; } export class ChatReferenceBinaryData { /** * The MIME type of the binary data. */ readonly mimeType: string; /** * Retrieves the binary data of the reference. This is primarily used to receive image attachments from the chat. * @returns A promise that resolves to the binary data as a Uint8Array. */ data(): Thenable; /** * Retrieves a URI reference to the binary data, if available. */ readonly reference?: Uri; /** * @param mimeType The MIME type of the binary data. * @param data The binary data of the reference. */ constructor(mimeType: string, data: () => Thenable); } }