v1.0 with SW PWA enabled
This commit is contained in:
19
frontend/node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.d.cts
generated
vendored
Normal file
19
frontend/node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.d.cts
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
import * as react_jsx_runtime from 'react/jsx-runtime';
|
||||
import * as React from 'react';
|
||||
|
||||
type QueryErrorResetFunction = () => void;
|
||||
type QueryErrorIsResetFunction = () => boolean;
|
||||
type QueryErrorClearResetFunction = () => void;
|
||||
interface QueryErrorResetBoundaryValue {
|
||||
clearReset: QueryErrorClearResetFunction;
|
||||
isReset: QueryErrorIsResetFunction;
|
||||
reset: QueryErrorResetFunction;
|
||||
}
|
||||
declare const useQueryErrorResetBoundary: () => QueryErrorResetBoundaryValue;
|
||||
type QueryErrorResetBoundaryFunction = (value: QueryErrorResetBoundaryValue) => React.ReactNode;
|
||||
interface QueryErrorResetBoundaryProps {
|
||||
children: QueryErrorResetBoundaryFunction | React.ReactNode;
|
||||
}
|
||||
declare const QueryErrorResetBoundary: ({ children, }: QueryErrorResetBoundaryProps) => react_jsx_runtime.JSX.Element;
|
||||
|
||||
export { type QueryErrorClearResetFunction, type QueryErrorIsResetFunction, QueryErrorResetBoundary, type QueryErrorResetBoundaryFunction, type QueryErrorResetBoundaryProps, type QueryErrorResetBoundaryValue, type QueryErrorResetFunction, useQueryErrorResetBoundary };
|
||||
Reference in New Issue
Block a user