(meta?: M)
| 183 | } |
| 184 | |
| 185 | getMeta<M>(meta?: M) { |
| 186 | return { |
| 187 | counter: this.counter, |
| 188 | promise: this.promise, |
| 189 | debugLabel: this.debugLabel, |
| 190 | ...meta, |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | start(promiseFn: () => Promise<T>) { |
| 195 | if ("AbortController" in globalScope) { |