Skip to main content
Module

std/io/mod.ts>ByteRange

The Deno Standard Library
Latest
interface ByteRange
Deprecated
Deprecated

This will be removed in 1.0.0. Use the Web Streams API instead.

import { type ByteRange } from "https://deno.land/std@0.224.0/io/mod.ts";

Properties

start: number

The 0 based index of the start byte for a range.

end: number

The 0 based index of the end byte for a range, which is inclusive.