mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
We now extend the default Eslint configuration and enforce styling with prettier for all of our frontend code.
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { SecondFactorMethod } from "./Methods";
|
|
|
|
export interface Configuration {
|
|
available_methods: Set<SecondFactorMethod>;
|
|
second_factor_enabled: boolean;
|
|
totp_period: number;
|
|
}
|