summaryrefslogtreecommitdiff
path: root/std/async
diff options
context:
space:
mode:
Diffstat (limited to 'std/async')
-rw-r--r--std/async/deferred.ts2
-rw-r--r--std/async/mux_async_iterator.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/std/async/deferred.ts b/std/async/deferred.ts
index 109a1a37e..c8760ce5d 100644
--- a/std/async/deferred.ts
+++ b/std/async/deferred.ts
@@ -6,7 +6,7 @@
// At the time of writing, the github issue is closed but the problem remains.
export interface Deferred<T> extends Promise<T> {
resolve: (value?: T | PromiseLike<T>) => void;
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ // deno-lint-ignore no-explicit-any
reject: (reason?: any) => void;
}
diff --git a/std/async/mux_async_iterator.ts b/std/async/mux_async_iterator.ts
index f9f110e5a..b434120bf 100644
--- a/std/async/mux_async_iterator.ts
+++ b/std/async/mux_async_iterator.ts
@@ -14,7 +14,7 @@ interface TaggedYieldedValue<T> {
export class MuxAsyncIterator<T> implements AsyncIterable<T> {
private iteratorCount = 0;
private yields: Array<TaggedYieldedValue<T>> = [];
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ // deno-lint-ignore no-explicit-any
private throws: any[] = [];
private signal: Deferred<void> = deferred();