/** * @license * Copyright 2022-2024 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { MatterError } from "../MatterError.js"; export class EndOfStreamError extends MatterError {} export class NoResponseTimeoutError extends MatterError {} export interface Stream { read(): Promise; write(data: T): Promise; }