Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
fix: specify return type
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Aug 29, 2023
1 parent 8381737 commit c8fee41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vitest-environment-nuxt/src/runtime/mount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export type MountSuspendedOptions<T> = ComponentMountingOptions<T> & {
export async function mountSuspended<T>(
component: T,
options?: MountSuspendedOptions<T>
) {
): Promise<ReturnType<typeof mount<T>>> {
const {
props = {},
attrs = {},
Expand Down

0 comments on commit c8fee41

Please sign in to comment.