UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 216 B
import type { StateCreator } from 'zustand'; export interface ErrorSlice { error: any; setError: (error: any) => void; } export declare const createErrorSlice: StateCreator<ErrorSlice, [ ], [ ], ErrorSlice>;