fix: export LumeStatusContextType

This commit is contained in:
Derrick Hammer 2023-10-16 15:14:50 -04:00
parent f1f5d24efa
commit d074ef507d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -11,7 +11,7 @@ export {
export {
default as LumeStatusProvider,
useLumeStatus,
type LumeStatusContext,
type LumeStatusContextType,
} from "./components/LumeStatusProvider";
export {
default as LumeDashboard,