Mark several unused vars as such
This commit is contained in:
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user