mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import Watchpack = require('watchpack');
|
|
const watch = new Watchpack({});
|
|
|
|
watch.watch(['test.js'], ['lib/'], 1000);
|
|
watch.watch(['test.js'], ['lib/']);
|
|
|
|
let time: number;
|
|
time = watch.getTimes()['test.js'];
|