update.html.ts 263 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 export const updateHtml = ( type : string = 'literal', tag : string | HTMLElement = '<div></div>', target : string = 'app' ) => { const $target : null | HTMLElement = document.querySelector(target); $target && ($target.innerHTML = `${tag}`) }