fix: export LumeStatusContextType
This commit is contained in:
parent
f1f5d24efa
commit
d074ef507d
|
@ -1,7 +1,7 @@
|
|||
import { createContext, useState, useContext, ReactNode } from "react";
|
||||
|
||||
// LumeStatusContextType
|
||||
interface LumeStatusContextType {
|
||||
export interface LumeStatusContextType {
|
||||
inited: boolean;
|
||||
setInited: (value: boolean) => void;
|
||||
ready: boolean;
|
||||
|
|
|
@ -11,7 +11,7 @@ export {
|
|||
export {
|
||||
default as LumeStatusProvider,
|
||||
useLumeStatus,
|
||||
type LumeStatusContext,
|
||||
type LumeStatusContextType,
|
||||
} from "./components/LumeStatusProvider";
|
||||
export {
|
||||
default as LumeDashboard,
|
||||
|
|
Loading…
Reference in New Issue