import { createContext } from "@lit/context"; import type { Config, CurrentBrand, LicenseSummary, SessionUser } from "@goauthentik/api"; export const authentikConfigContext = createContext(Symbol("authentik-config-context")); export const authentikUserContext = createContext(Symbol("authentik-user-context")); export const authentikEnterpriseContext = createContext( Symbol("authentik-enterprise-context"), ); export const authentikBrandContext = createContext(Symbol("authentik-brand-context")); export default authentikConfigContext;