Skip to content

Commit

Permalink
fix: add missing type in .d.ts (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl authored Sep 6, 2024
1 parent e0bc4ac commit 4a8b55c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vscode/prompt-tsx",
"version": "0.2.8-alpha",
"version": "0.2.9-alpha",
"description": "Declare LLM prompts with TSX",
"main": "./dist/base/index.js",
"types": "./dist/base/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/base/vscodeTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) Microsoft Corporation and GitHub. All rights reserved.
*--------------------------------------------------------------------------------------------*/

import type { CancellationToken, Command, Location, MarkdownString, ProviderResult, ThemeIcon, Uri } from 'vscode';
import type { CancellationToken, Command, Location, MarkdownString, ProviderResult, ThemeIcon, Range, Uri } from 'vscode';

/**
* Represents a part of a chat response that is formatted as Markdown.
Expand Down

0 comments on commit 4a8b55c

Please sign in to comment.