mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-24 04:36:31 +00:00
7 lines
174 B
TypeScript
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;
|