mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-27 14:16:34 +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;
|