Deno.ResourceMap

A map of open resources that Deno is tracking. The key is the resource ID (rid) and the value is its representation.

interface ResourceMap {
[rid: number]: unknown;
}

§Index Signatures

§
[rid: number]: unknown