Skip to content

Commit

Permalink
🐛 feat: use key, value arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfram77 committed Apr 14, 2023
1 parent 674c128 commit be62e4e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "extra-lists",
"version": "4.0.2",
"version": "4.0.3",
"description": "A collection of functions for operating upon Lists.",
"main": "index.js",
"module": "index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Expand Up @@ -14,9 +14,9 @@ import * as xmap from "extra-map";
// TYPES
// =====

/** Entries is a list of key-value pairs, with unique keys. */
/** Entries is an array of key-value pairs, with unique keys. */
export type Entries<K, V> = Iterable<[K, V]>;
/** Lists is a pair of key list and value list, with unique keys. */
/** Lists is a pair of key array and value array, with unique keys. */
export type Lists<K, V> = [Iterable<K>, Iterable<V>];


Expand Down

0 comments on commit be62e4e

Please sign in to comment.