1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-19 12:16:17 -05:00
denoland-deno/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");