import { createContext } from 'react'; import { Me } from '../../types'; export interface AuthenticationContextValue { refresh: () => Promise; signIn: (accessToken: string) => void; signOut: (redirect: boolean) => void; me?: Me; } const AuthenticationContextDefaultValue = {} as AuthenticationContextValue; export const AuthenticationContext = createContext(AuthenticationContextDefaultValue); export interface AuthenticatedContextValue extends AuthenticationContextValue { me: Me; } const AuthenticatedContextDefaultValue = {} as AuthenticatedContextValue; export const AuthenticatedContext = createContext(AuthenticatedContextDefaultValue);