1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-07 04:20:05 +00:00

feat(pollJobState): made pollOptions optional and updated docs

This commit is contained in:
Yury Shkoda
2020-11-30 12:27:09 +03:00
parent 1b117a67aa
commit 6d166efd11
2 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
export interface PollOptions {
MAX_POLL_COUNT: number
POLL_INTERVAL: number
MAX_POLL_COUNT?: number
POLL_INTERVAL?: number
}