mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 02:27:46 -05:00
13 lines
188 B
JavaScript
13 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("");
|