diff --git a/packages/playwright-ct-vue/index.d.ts b/packages/playwright-ct-vue/index.d.ts index 684e7a1e89..dca274ef15 100644 --- a/packages/playwright-ct-vue/index.d.ts +++ b/packages/playwright-ct-vue/index.d.ts @@ -34,9 +34,11 @@ export type PlaywrightTestConfig = Omit & { } }; +type Slot = string | string[]; + export interface MountOptions> { props?: Props, - slots?: Record, + slots?: Record & { default?: Slot }; on?: Record, hooksConfig?: any, }