add.event.ts 299 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * @author : wonseog * @date : 2021/03/10 * @description : 버튼 이벤트, Route 이벤트 등록 모음 **/ export default function addEventWithElementByType( element: HTMLElement, eventType: string, handler: (e: Event) => void ) { element.addEventListener(eventType, handler); }