// 遮挡检测
declare namespace OcclusionDetection {
  /**
   * @function startOD
   * @description 开始运行遮挡检测
   */
  interface startOD {
    (): void;
  }

  /**
   * @function stopOD
   * @description 结束遮挡检测
   */
  interface stopOD {
    (): void;
  }
}

export default OcclusionDetection;
