UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

5 lines 243 B
//#region src/infra/map-size.d.ts /** Prunes a Map in insertion order until it fits the requested maximum size. */ declare function pruneMapToMaxSize<K, V>(map: Map<K, V>, maxSize: number): void; //#endregion export { pruneMapToMaxSize as t };