Skip to content

Callout Annotations

Callout annotations are a way to add a message to a specific line of code. They are useful for adding context to a line of code or for providing additional information about a line of code.

Log: Custom log message
const
const a: 1
a
= 1;
Error: Custom error message
const
const b: 1
b
= 1;
Warning: Custom warning message
const
const c: 1
c
= 1;
Message: Custom annotation message
const
const d: 1
d
= 1;