indexed-collection
Version:
A zero-dependency library of classes that make filtering, sorting and observing changes to arrays easier and more efficient.
14 lines (13 loc) • 713 B
text/typescript
export { CollectionNature } from './CollectionNature';
export { type ICollectionOption } from './ICollectionOption';
export { type ICollectionViewOption } from './ICollectionViewOption';
export { type IMutableCollection } from './IMutableCollection';
export { type IReadonlyCollection } from './IReadonlyCollection';
export { type KeyExtract, type MultipleKeyExtract, type SingleKeyExtract } from './KeyExtract';
export { type Nullable, type Optional } from './Optional';
export { defaultCollectionOption } from './defaultCollectionOption';
export {
defaultFilter as defaultCollectionViewFilter,
defaultCollectionViewOption,
defaultSort as defaultCollectionViewSort,
} from './defaultCollectionViewOption';