mirror of
https://github.com/denoland/deno.git
synced 2025-02-10 16:12:26 -05:00
![David Sherret](/assets/img/avatar_default.png)
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);
|
|
}
|