/** * Created by rockyl on 2023/3/23. */ import { PollingApiOptions } from "./interfaces"; /** * 轮询api接口 */ export declare function pollingApi(callApiFunc: () => Promise, options?: PollingApiOptions): () => void;