deno/cli/tests/bundle_im.ts

18 lines
307 B
TypeScript
Raw Normal View History

import { returnsFoo, printHello2 } from "mod2";
export function returnsHi(): string {
return "Hi";
}
export function returnsFoo2(): string {
return returnsFoo();
}
export function printHello3(): void {
printHello2();
}
export function throwsError(): void {
throw Error("exception from mod1");
}