feat(watch): Allow setting the starting revision

This commit is contained in:
Nicholas Sun 2019-02-05 18:45:54 +00:00 коммит произвёл Connor Peet
Родитель ddfedc76a0
Коммит ca42632640
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -394,6 +394,14 @@ export class WatchBuilder {
return this;
}
/**
* Watch starting from a specific revision.
*/
public startRevision(revision: string): this {
this.request.start_revision = revision;
return this;
}
/**
* watcher() creates but does not connect the watcher. Use create() instead;
* this is mostly for testing purposes.