Skip to content

Commit 2ede828

Browse files
chore: jsdoc
1 parent da1e76c commit 2ede828

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

cli/tsc/dts/lib.deno.unstable.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -4357,12 +4357,22 @@ declare namespace Deno {
43574357
| TSUnknownKeyword
43584358
| TSVoidKeyword;
43594359

4360+
/**
4361+
* A single line comment
4362+
* @category Linter
4363+
* @experimental
4364+
*/
43604365
export interface LineComment {
43614366
type: "Line";
43624367
range: Range;
43634368
value: string;
43644369
}
43654370

4371+
/**
4372+
* A potentially multi-line block comment
4373+
* @category Linter
4374+
* @experimental
4375+
*/
43664376
export interface BlockComment {
43674377
type: "Block";
43684378
range: Range;

0 commit comments

Comments
 (0)