mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 08:26:35 +08:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import Watchpack = require('watchpack');
|
|
const watch = new Watchpack({});
|
|
|
|
watch.watch(['test.js'], ['lib/'], 1000);
|
|
|
|
let time: number;
|
|
time = watch.getTimes()['test.js'];
|