Module

std/archive/mod.ts>TarOptions

The Deno Standard Library
Go to Latest
interface TarOptions
implements TarInfo
import { type TarOptions } from "https://dotland.deno.dev/std@0.223.0/archive/mod.ts";

Options for {@link Tar.append}.

Properties

optional
filePath: string

Filepath of the file to append to the archive

optional
reader: Reader

A Reader of any arbitrary content to append to the archive

optional
contentSize: number

Size of the content to be appended. This is only required when passing a reader to the archive.