0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00
deno/cli/tests/034_onload/nest_imported.ts

8 lines
185 B
TypeScript
Raw Normal View History

2019-07-16 13:19:26 +09:00
window.addEventListener(
"load",
(e: Event): void => {
console.log(`got ${e.type} event in event handler (nest_imported)`);
}
);
console.log("log from nest_imported script");