mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
export default class PingTimer {
|
|
private keepalive;
|
|
private timer;
|
|
private checkPing;
|
|
constructor(keepalive: number, checkPing: () => void);
|
|
clear(): void;
|
|
reschedule(): void;
|
|
}
|