Commit 4d416cb0 authored by Robert Knight's avatar Robert Knight

Replace a remaining JSDoc comment with TS equivalent

parent 25d2b6a0
......@@ -61,15 +61,13 @@ function sendCall(
args: unknown[] = [],
sequence = -1
) {
port.postMessage(
/** @type {RequestMessage} */ {
protocol: PROTOCOL,
version: VERSION,
arguments: args,
method,
sequence,
}
);
port.postMessage({
protocol: PROTOCOL,
version: VERSION,
arguments: args,
method,
sequence,
} satisfies RequestMessage);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment