From 3aa8ad6a6f2b85af9844daf937f3cc58ef8fe775 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Wed, 10 Jan 2024 02:32:09 -0600 Subject: [PATCH] chore: Update generated files --- .eslintrc-auto-import.json | 6 +++++- auto-imports.d.ts | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.eslintrc-auto-import.json b/.eslintrc-auto-import.json index 8a135a32..49683f23 100644 --- a/.eslintrc-auto-import.json +++ b/.eslintrc-auto-import.json @@ -63,6 +63,10 @@ "watch": true, "watchEffect": true, "watchPostEffect": true, - "watchSyncEffect": true + "watchSyncEffect": true, + "ExtractDefaultPropTypes": true, + "ExtractPropTypes": true, + "ExtractPublicPropTypes": true, + "WritableComputedRef": true } } diff --git a/auto-imports.d.ts b/auto-imports.d.ts index 4ac11826..65b02fd8 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -1,6 +1,7 @@ /* eslint-disable */ /* prettier-ignore */ // @ts-nocheck +// noinspection JSUnusedGlobalSymbols // Generated by unplugin-auto-import export {} declare global { @@ -65,5 +66,6 @@ declare global { // for type re-export declare global { // @ts-ignore - export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue' + export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue' + import('vue') }