Skip to content

Commit

Permalink
fix: export command interface
Browse files Browse the repository at this point in the history
  • Loading branch information
k2on committed Oct 29, 2024
1 parent cc8d2ca commit aee3ffd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@koons/cli",
"version": "0.1.4",
"version": "0.1.5",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function command() {
return new CommandBuilder();
}

interface BuildCommand<T extends ZodTypeAny> {
export interface BuildCommand<T extends ZodTypeAny> {
_type: "command";
input?: ZodSchema<T>;
description?: string;
Expand Down

0 comments on commit aee3ffd

Please sign in to comment.