/** * 事件相关的声明。 * @packageDocumentation */ /** * 轮询相关的事件 */ export type PollingEvent = { /** * 轮询开始时触发。 */ start: undefined; /** * 轮询结束后触发。 */ stop: undefined; };