Skip to content

Commit

Permalink
Merge pull request #1681 from empathyco/improve-InstallXOptions-insta…
Browse files Browse the repository at this point in the history
…llExtraPlugins-type

fix(types): update installExtraPlugins to support Promise return type
  • Loading branch information
davidglezz authored Dec 19, 2024
2 parents 48cedcd + 99d0620 commit 4c7bd97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/x-components/src/x-installer/x-installer/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export interface InstallXOptions<API extends XAPI = XAPI> extends XPluginOptions
* @param options - An object that contains utilities that might be helpful for installing Vue
* plugins.
*/
installExtraPlugins?(options: ExtraPluginsOptions): void;
installExtraPlugins?(options: ExtraPluginsOptions): void | Promise<void>;
}

/**
Expand Down

0 comments on commit 4c7bd97

Please sign in to comment.