@rimbu/bimap
Version:
A bidirectional immutable Map of keys and values for TypeScript
15 lines (14 loc) • 670 B
text/typescript
/**
* @packageDocumentation
*
* The `@rimbu/bimap/custom` entry exposes the underlying context, builder and implementation
* types used to construct custom `BiMap` variants, for example with specialized underlying
* map contexts or configuration.<br/>
* Use this entry only in advanced scenarios where you need to wire BiMaps to custom map
* implementations; for regular usage prefer the main `@rimbu/bimap` API.<br/>
* See the `@rimbu/bimap` README for an overview of BiMap concepts.
*/
export * from './implementation/builder.cjs';
export * from './implementation/immutable.cjs';
export * from './implementation/context.cjs';
export * from './interface.cjs';