After - Node documentation
interface After

Usage in Deno

import { type After } from "node:v8";

Called immediately after a promise continuation executes. This may be after a then(), catch(), or finally() handler or before an await after another await.

Call Signatures

(promise: Promise<unknown>): void