mirror of
https://github.com/denoland/deno.git
synced 2024-12-04 17:18:23 -05:00
2b26444584
* https://github.com/denoland/deno_graph/pull/544 Closes https://github.com/denoland/deno/issues/25516
12 lines
188 B
JavaScript
12 lines
188 B
JavaScript
// @ts-check
|
|
|
|
/** @import { add } from "http://localhost:4545/add.ts" */
|
|
|
|
/**
|
|
* @param {typeof add} myValue
|
|
*/
|
|
export function addHere(myValue) {
|
|
return myValue(1, 2);
|
|
}
|
|
|
|
addHere("");
|