From 46c081699b1d3a371243998d2a1bc09bb7c2561d Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Sat, 23 Sep 2023 13:37:48 +0300 Subject: [PATCH] squash! --- Source/Option/Index.ts | 2 +- Target/Option/Index.d.ts | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Source/Option/Index.ts b/Source/Option/Index.ts index 87d1fd8..6cfc69b 100644 --- a/Source/Option/Index.ts +++ b/Source/Option/Index.ts @@ -58,4 +58,4 @@ export default { passed: async () => true, changed: async (plan) => plan, }, -} satisfies Type as Type; +} satisfies Type; diff --git a/Target/Option/Index.d.ts b/Target/Option/Index.d.ts index 9c3ecd2..a6aee46 100644 --- a/Target/Option/Index.d.ts +++ b/Target/Option/Index.d.ts @@ -27,5 +27,11 @@ export interface optionCommandsPlan { export interface optionCommandsFlight { destination: optionInfo; } -declare const _default: Type; +declare const _default: { + Logger: number; + dispatch: { + passed: () => Promise; + changed: (plan: optionCommandsPlan) => Promise; + }; +}; export default _default;