타이머 식별자 (숫자 조작 방지용 opaque type)
pub type TimerId
pub fn clear_interval(id: TimerId) -> Nil
setInterval 취소
pub fn clear_timeout(id: TimerId) -> Nil
setTimeout 취소
pub fn set_interval(callback: fn() -> Nil, ms: Int) -> TimerId
반복 실행 타이머 설정
pub fn set_timeout(callback: fn() -> Nil, ms: Int) -> TimerId
지연 실행 타이머 설정