|
5 | 5 | ```ts |
6 | 6 | /// <reference types="node" /> |
7 | 7 |
|
| 8 | +import { App } from "@vue/runtime-core"; |
8 | 9 | import type { ComponentState } from "@vue/devtools-api"; |
9 | | -import { ComputedRef } from "@vue/composition-api"; |
| 10 | +import { ComputedRef } from "@vue/runtime-core"; |
10 | 11 | import { Context } from "vm"; |
11 | 12 | import type { CustomInspectorNode } from "@vue/devtools-api"; |
12 | 13 | import type { CustomInspectorOptions } from "@vue/devtools-api"; |
13 | 14 | import type { CustomInspectorState } from "@vue/devtools-api"; |
| 15 | +import { DeepReadonly } from "@vue/runtime-core"; |
14 | 16 | import { DevtoolsPluginApi } from "@vue/devtools-api"; |
15 | | -import { InjectionKey } from "@vue/composition-api"; |
| 17 | +import { InjectionKey } from "@vue/runtime-core"; |
16 | 18 | import type { InspectedComponentData } from "@vue/devtools-api"; |
17 | | -import { PluginFunction } from "vue"; |
18 | | -import { provide } from "@vue/composition-api"; |
19 | | -import { Ref } from "@vue/composition-api"; |
| 19 | +import { Plugin as Plugin_2 } from "@vue/runtime-core"; |
| 20 | +import { provide } from "@vue/runtime-core"; |
| 21 | +import { Ref } from "@vue/runtime-core"; |
20 | 22 | import { TimelineEvent } from "@vue/devtools-api"; |
21 | | -import { UnwrapRef } from "@vue/composition-api"; |
22 | | -import { VueConstructor } from "vue"; |
| 23 | +import { UnwrapRef } from "@vue/runtime-core"; |
23 | 24 |
|
24 | 25 | // @public (undocumented) |
25 | 26 | export interface ArrayPaginationResult<T extends Array<any>> |
@@ -472,8 +473,6 @@ export function getCssVariableFor( |
472 | 473 | // @public |
473 | 474 | export function getDevtools(): DevtoolsPluginApi<unknown> | undefined; |
474 | 475 |
|
475 | | -// Warning: (ae-forgotten-export) The symbol "Plugin" needs to be exported by the entry point index.d.ts |
476 | | -// |
477 | 476 | // @public (undocumented) |
478 | 477 | export const hydrationPlugin: Plugin_2; |
479 | 478 |
|
@@ -1093,10 +1092,7 @@ export function setCssVariableFor( |
1093 | 1092 | ): void; |
1094 | 1093 |
|
1095 | 1094 | // @public |
1096 | | -export function setDevtools( |
1097 | | - app: VueConstructor, |
1098 | | - api: DevtoolsPluginApi<unknown> |
1099 | | -): void; |
| 1095 | +export function setDevtools(app: App, api: DevtoolsPluginApi<unknown>): void; |
1100 | 1096 |
|
1101 | 1097 | // @public |
1102 | 1098 | export function setI18n< |
@@ -1427,11 +1423,7 @@ export function useDebounce<T extends Procedure>( |
1427 | 1423 | ): T; |
1428 | 1424 |
|
1429 | 1425 | // @public (undocumented) |
1430 | | -export const UseDevtoolsApp: ( |
1431 | | - app: VueConstructor, |
1432 | | - id?: string, |
1433 | | - label?: string |
1434 | | -) => void; |
| 1426 | +export const UseDevtoolsApp: (app: App, id?: string, label?: string) => void; |
1435 | 1427 |
|
1436 | 1428 | // @public (undocumented) |
1437 | 1429 | export function useDevtoolsComponentState( |
@@ -2219,8 +2211,6 @@ export function useStorage<T>( |
2219 | 2211 | sync?: boolean |
2220 | 2212 | ): LocalStorageReturn<T>; |
2221 | 2213 |
|
2222 | | -// Warning: (ae-forgotten-export) The symbol "DeepReadonly" needs to be exported by the entry point index.d.ts |
2223 | | -// |
2224 | 2214 | // @public (undocumented) |
2225 | 2215 | export function useTimeline<T>( |
2226 | 2216 | value: Ref<T>, |
@@ -2317,7 +2307,7 @@ export const VUE_VERSION: "2" | "3"; |
2317 | 2307 | // @public (undocumented) |
2318 | 2308 | export const VueComposableDevtools: { |
2319 | 2309 | install( |
2320 | | - app: VueConstructor, |
| 2310 | + app: App, |
2321 | 2311 | options?: { |
2322 | 2312 | id: string; |
2323 | 2313 | label: string; |
@@ -2411,7 +2401,7 @@ export type WrapRef<T> = T extends Ref<any> ? T : Ref<T>; |
2411 | 2401 |
|
2412 | 2402 | // Warnings were encountered during analysis: |
2413 | 2403 | // |
2414 | | -// dist/v2/packages/vue-composable/src/validation/validation.d.ts:72:5 - (ae-forgotten-export) The symbol "ToObjectOutput" needs to be exported by the entry point index.d.ts |
| 2404 | +// dist/v3/packages/vue-composable/src/validation/validation.d.ts:72:5 - (ae-forgotten-export) The symbol "ToObjectOutput" needs to be exported by the entry point index.d.ts |
2415 | 2405 |
|
2416 | 2406 | // (No @packageDocumentation comment for this package) |
2417 | 2407 | ``` |
0 commit comments