DefinitelyTyped/types/sntp/sntp-tests.ts
2019-03-05 16:40:06 +11:00

19 lines
198 B
TypeScript

import Sntp = require('sntp');
const options = {
host: 'abc',
port: 123,
};
Sntp.now();
Sntp.start(options);
Sntp.start();
Sntp.stop();
Sntp.time(options);
Sntp.time();
Sntp.offset();