import { StatePath } from "./Api"; import { Get } from "./Client"; export enum AuthenticationLevel { Unauthenticated = 0, OneFactor = 1, TwoFactor = 2, } export interface AutheliaState { username: string; authentication_level: AuthenticationLevel; } export async function getState(): Promise { return Get(StatePath); }