/** * `stop` 이벤트의 detail 페이로드. * 현재는 추가 컨텍스트가 없으므로 빈 객체이며, 향후 확장 대비 interface로 유지. */ export interface StopEventDetail { } export type StopEvent = CustomEvent; declare global { interface HTMLElementEventMap { 'stop': StopEvent; } }