10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
import { WebApplication } from '@/UIModels/Application'
|
|
import { MfaProps } from './Panes/TwoFactorAuth/MfaProps'
|
|
import { AppState } from '@/UIModels/AppState'
|
|
|
|
export interface PreferencesProps extends MfaProps {
|
|
application: WebApplication
|
|
appState: AppState
|
|
closePreferences: () => void
|
|
}
|