1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6export function makeTextResult(data: unknown): { content: [{ type: 'text'; text: string }] } { 7 return { 8 content: [ 9 { 10 type: 'text', 11 text: typeof data === 'string' ? data : (JSON.stringify(data, null, 2) ?? String(data)), 12 }, 13 ], 14 }; 15} 16 17