| 1967 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy) |
| 1968 | */ |
| 1969 | declare class ByteLengthQueuingStrategy implements QueuingStrategy<ArrayBufferView> { |
| 1970 | constructor(init: QueuingStrategyInit); |
| 1971 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark) */ |
| 1972 | get highWaterMark(): number; |
| 1973 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/size) */ |
| 1974 | get size(): (chunk?: any) => number; |
| 1975 | } |
| 1976 | /** |
| 1977 | * This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. |
| 1978 | * |
nothing calls this directly
no outgoing calls
no test coverage detected