mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
b8af46e007
Unused locals and parameters don't make sense to surface in remote modules. Additionally, fast check can cause these kind of diagnostics when publishing, so they should be ignored. Closes #22959
5 lines
125 B
TypeScript
5 lines
125 B
TypeScript
import * as inner from "jsr:@denotest/add";
|
|
|
|
export function add(a: number, b: number): number {
|
|
return inner.add(a, b);
|
|
}
|