UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

15 lines (14 loc) 411 B
interface TutorialModeContextType { tutorialMode: boolean; setTutorialMode: (mode: boolean) => void; } interface AuthContextType { isAuthenticated: boolean; user: any; login: () => void; logout: () => void; } export declare const useTutorialMode: () => TutorialModeContextType; export declare const useAuth: () => AuthContextType; export declare const App: () => JSX.Element; export {};