Files
standardnotes-app-web/app/assets/javascripts/Components/Preferences/PreferencesProps.tsx
2022-05-30 12:42:52 +05:30

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
}