import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition, Theme } from '@tanstack/query-devtools'; import { QueryClient } from '@tanstack/vue-query'; export interface DevtoolsOptions { /** * Set this true if you want the dev tools to default to being open */ initialIsOpen?: boolean; /** * The position of the React Query logo to open and close the devtools panel. * 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' * Defaults to 'bottom-right'. */ buttonPosition?: DevtoolsButtonPosition; /** * The position of the React Query devtools panel. * 'top' | 'bottom' | 'left' | 'right' * Defaults to 'bottom'. */ position?: DevtoolsPosition; /** * Custom instance of QueryClient */ client?: QueryClient; /** * Use this so you can define custom errors that can be shown in the devtools. */ errorTypes?: Array; /** * Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles. */ styleNonce?: string; /** * Use this so you can attach the devtool's styles to specific element in the DOM. */ shadowDOMTarget?: ShadowRoot; /** * Set this to true to hide disabled queries from the devtools panel. */ hideDisabledQueries?: boolean; /** * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel. * Defaults to 'system'. */ theme?: Theme; } export interface DevtoolsPanelOptions { /** * Custom instance of QueryClient */ client?: QueryClient; /** * Use this so you can define custom errors that can be shown in the devtools. */ errorTypes?: Array; /** * Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles. */ styleNonce?: string; /** * Use this so you can attach the devtool's styles to specific element in the DOM. */ shadowDOMTarget?: ShadowRoot; /** * Custom styles for the devtools panel * @default { height: '500px' } * @example { height: '100%' } * @example { height: '100%', width: '100%' } */ style?: Partial; /** * Callback function that is called when the devtools panel is closed */ onClose?: () => unknown; /** * Set this to true to hide disabled queries from the devtools panel. */ hideDisabledQueries?: boolean; /** * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel. * Defaults to 'system'. */ theme?: Theme; }