mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
|
export {};
|
||
|
|
||
|
declare global {
|
||
|
/**
|
||
|
* ```ts
|
||
|
* import { assertEquals } from "@std/assert/equals";
|
||
|
* import "./mod.js";
|
||
|
*
|
||
|
* assertEquals(myFunction(1, 2), 3);
|
||
|
* ```
|
||
|
*/
|
||
|
export function myFunction(a: number, b: number): number;
|
||
|
}
|