Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueuingStrategyInit

interface QueuingStrategyInit {
highWaterMark: number;
}

§Properties

§
highWaterMark: number
[src]

Creates a new ByteLengthQueuingStrategy with the provided high water mark.

Note that the provided high water mark will not be validated ahead of time. Instead, if it is negative, NaN, or not a number, the resulting ByteLengthQueuingStrategy will cause the corresponding stream constructor to throw.