IOTConnect-Web/node_modules/mqtt/build/lib/timers.d.ts

7 lines
174 B
TypeScript
Raw Permalink Normal View History

2024-05-09 01:49:52 +00:00
import { clearTimeout as clearT, setTimeout as setT } from 'worker-timers';
declare const timers: {
set: typeof setT;
clear: typeof clearT;
};
export default timers;