BasicEvent.ts 391 B

12345678910111213141516171819
  1. /**
  2. * 基础事件 - 逻辑层
  3. */
  4. export default class BasicEvent {
  5. /**名字 */
  6. public event: string;
  7. /**作用域 */
  8. public target: any;
  9. /**回调函数 */
  10. public callback: Function;
  11. /**优先级 */
  12. public priority: number;
  13. /**是否单次执行 */
  14. public once: boolean;
  15. /**停止事件传递方法 */
  16. public stopPropagation: Function;
  17. }