Module

std/streams/mod.ts>Closer

Deno standard library
Go to Latest
interface Closer
import { type Closer } from "https://dotland.deno.dev/std@0.221.0/streams/mod.ts";

An abstract interface which when implemented provides an interface to close files/resources that were previously opened.

Methods

close(): void

Closes the resource, "freeing" the backing file/resource.

import Closer
import { Closer } from "https://dotland.deno.dev/std@0.221.0/streams/mod.ts";