Skip to content

Commit 936c3d4

Browse files
committed
Commands type could not be re-used by consumers #18
1 parent 5fe8ed0 commit 936c3d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "macos-multi-select",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Given a list of ids, and an action, return a list of selected items with the same behaviour of macOS finder list view selection.",
55
"main": "dist/index.js",
66
"repository": "[email protected]:codingedgar/macos-multi-select.git",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type Context = {
77
adjacentPivotstring | undefined,
88
}
99

10-
type Command =
10+
export type Command =
1111
| { type: "SELECT ONE", id: string }
1212
| { type: "TOGGLE SELECTION", id: string }
1313
| { type: "DESELECT ALL" }

0 commit comments

Comments
 (0)