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;