Mark several unused vars as such

This commit is contained in:
2026-01-10 08:54:51 -06:00
parent c7b8cd33da
commit 49dc0e3fe0
3 changed files with 5 additions and 5 deletions

View File

@@ -15,8 +15,8 @@ type Message = {
text: AtLeastOne<string>;
};
const m1: Message = { timestamp: 123, source: "logging", text: ["foo"] };
const m2: Message = {
const _m1: Message = { timestamp: 123, source: "logging", text: ["foo"] };
const _m2: Message = {
timestamp: 321,
source: "diagnostic",
text: ["ok", "whatever"],