NormalLayerBaseEvent<T>

普通图层事件的基础类型

interface NormalLayerBaseEvent<T = unknown> {
    currentTarget: T;
    target: T;
    type: string;
}

属性