@tanstack/query-devtools
Advanced tools
Comparing version 5.0.0-beta.14 to 5.0.0-beta.20
@@ -26,3 +26,3 @@ import { Query, QueryClient, onlineManager } from '@tanstack/query-core'; | ||
initialIsOpen?: boolean; | ||
errorTypes?: DevToolsErrorType[]; | ||
errorTypes?: Array<DevToolsErrorType>; | ||
} | ||
@@ -43,3 +43,3 @@ | ||
initialIsOpen: Signal<boolean | undefined>; | ||
errorTypes: Signal<DevToolsErrorType[] | undefined>; | ||
errorTypes: Signal<Array<DevToolsErrorType> | undefined>; | ||
Component: typeof DevtoolsComponent | undefined; | ||
@@ -51,3 +51,3 @@ dispose?: () => void; | ||
setInitialIsOpen(isOpen: boolean): void; | ||
setErrorTypes(errorTypes: DevToolsErrorType[]): void; | ||
setErrorTypes(errorTypes: Array<DevToolsErrorType>): void; | ||
setClient(client: QueryClient): void; | ||
@@ -54,0 +54,0 @@ mount<T extends HTMLElement>(el: T): void; |
{ | ||
"name": "@tanstack/query-devtools", | ||
"version": "5.0.0-beta.14", | ||
"version": "5.0.0-beta.20", | ||
"description": "Developer tools to interact with and visualize the TanStack Query cache", | ||
@@ -51,3 +51,3 @@ "author": "tannerlinsley", | ||
"vite-plugin-solid": "^2.7.0", | ||
"@tanstack/query-core": "5.0.0-beta.14" | ||
"@tanstack/query-core": "5.0.0-beta.20" | ||
}, | ||
@@ -54,0 +54,0 @@ "scripts": { |
@@ -29,3 +29,3 @@ import { createContext, useContext } from 'solid-js' | ||
initialIsOpen?: boolean | ||
errorTypes?: DevToolsErrorType[] | ||
errorTypes?: Array<DevToolsErrorType> | ||
} | ||
@@ -32,0 +32,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1975574