Skip to main content
Module

x/uuid/lib/lib.deno_runtime.d.ts>Deno.WriteFileOptions

Deprecated! UUID is part of the deno standard library
Latest
interface Deno.WriteFileOptions
import { type Deno } from "https://deno.land/x/uuid@v0.1.2/lib/lib.deno_runtime.d.ts";
const { WriteFileOptions } = Deno;

Options for writing to a file. perm would change the file's permission if set. create decides if the file should be created if not exists (default: true) append decides if the file should be appended (default: false)

Properties

optional
perm: number
optional
create: boolean
optional
append: boolean