diff --git a/types/index.d.ts b/types/index.d.ts index d4edc3b..092e39a 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -7,7 +7,7 @@ import {queries, EventType, BoundFunctions} from '@testing-library/dom' // eslint-disable-next-line import/no-extraneous-dependencies import {OptionsReceived as PrettyFormatOptions} from 'pretty-format' import {ComponentProps, ComponentSlots} from 'vue-component-type-helpers' -import {RemoveIndexSignature} from 'type-fest' +import {OmitIndexSignature} from 'type-fest' // NOTE: fireEvent is overridden below export * from '@testing-library/dom' @@ -52,7 +52,7 @@ type AllowNonFunctionSlots = { [K in keyof Slots]: Slots[K] | VNodeChild } type ExtractSlots = AllowNonFunctionSlots< - Partial>> + Partial>> > export interface RenderOptions