mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +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;
|