Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/ext/web/lib.deno_web.d.ts>CountQueuingStrategy

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface CountQueuingStrategy
implements QueuingStrategy
import { type CountQueuingStrategy } from "https://deno.land/x/deno@v1.38.1/ext/web/lib.deno_web.d.ts";

This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.

Properties

highWaterMark: number

Methods

size(chunk: any): 1
variable CountQueuingStrategy
import { CountQueuingStrategy } from "https://deno.land/x/deno@v1.38.1/ext/web/lib.deno_web.d.ts";

type

{ readonly prototype: CountQueuingStrategy; new (options: { highWaterMark: number; }): CountQueuingStrategy; }