/** * 不可重入 * @param fn * @param options * @returns */ declare function noReentry(fn: Function, options?: { silence?: boolean; }): (this: any, ...args: any[]) => Promise; export { noReentry };