import type { streamInfoSymbol } from "../constants.js"; import type { StreamInfoTrie } from "./StreamInfoTrie.js"; /** * For use in Cache implementations only. * This should not be used in userland code. */ export interface ExtensionsWithStreamInfo extends Record { [streamInfoSymbol]?: { deref(): StreamInfoTrie | undefined; }; } //# sourceMappingURL=ExtensionsWithStreamDetails.d.ts.map