blob: 67b906ec21f7a93ee9284c589e56856f06f51a32 [file] [log] [blame]
// clang-format off
import('./strings.en').then(m => {
const msg: HTMLDivElement = document.createElement('div');
msg.innerText = m.hello();
// For sourcemap testing, keep this string literal on line 6 column 21 !!
msg.className = 'ts1';
document.body.appendChild(msg);
});