Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 23, 2023
1 parent 8332efd commit 46c0816
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Option/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ export default {
passed: async () => true,
changed: async (plan) => plan,
},
} satisfies Type as Type;
} satisfies Type;
8 changes: 7 additions & 1 deletion Target/Option/Index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,11 @@ export interface optionCommandsPlan {
export interface optionCommandsFlight {
destination: optionInfo;
}
declare const _default: Type;
declare const _default: {
Logger: number;
dispatch: {
passed: () => Promise<boolean>;
changed: (plan: optionCommandsPlan) => Promise<optionCommandsPlan>;
};
};
export default _default;

0 comments on commit 46c0816

Please sign in to comment.