IOTConnect-Web/node_modules/mqtt/build/lib/timers.d.ts
2024-05-09 09:49:52 +08:00

7 lines
174 B
TypeScript

import { clearTimeout as clearT, setTimeout as setT } from 'worker-timers';
declare const timers: {
set: typeof setT;
clear: typeof clearT;
};
export default timers;