0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/tools/ts_library_builder/testdata/moduleE.ts
2018-11-04 05:56:49 -08:00

5 lines
116 B
TypeScript

import * as moduleF from "./moduleF";
export function process(value: typeof moduleF.key) {
console.log(value);
}