네임스페이스 중첩
중첩된 네임스페이스
namespace Dom {
// 중첩된 Events 네임스페이스
export namespace Events {
export function on(
el : Element|Document,
type : string,
handler : (e:Event)=>void,
is_capture : boolean = false
):void {
el.addEventListener(type, handler, is_capture);
}
export function off(
el : Element|Document,
type : string,
handler : (e:Event)=>void,
is_capture : boolean = false
):void {
el.removeEventListener(type, handler, is_capture);
}
}
}중첩된 네임스페이스 별칭
실습
참고
Last updated
