mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
import CaptchaAppState from './CaptchaAppState';
|
|
import SettingsAppState from './SettingsAppState';
|
|
|
|
interface AppState {
|
|
captcha: CaptchaAppState;
|
|
settings: SettingsAppState;
|
|
}
|
|
|
|
export default AppState;
|