We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72fb0ea commit 3f45bc7Copy full SHA for 3f45bc7
cli/tsc/dts/lib.deno.unstable.d.ts
@@ -4357,12 +4357,22 @@ declare namespace Deno {
4357
| TSUnknownKeyword
4358
| TSVoidKeyword;
4359
4360
+ /**
4361
+ * A single line comment
4362
+ * @category Linter
4363
+ * @experimental
4364
+ */
4365
export interface LineComment {
4366
type: "Line";
4367
range: Range;
4368
value: string;
4369
}
4370
4371
4372
+ * A potentially multi-line block comment
4373
4374
4375
4376
export interface BlockComment {
4377
type: "Block";
4378
0 commit comments