mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { Error } from './AppSectionState';
|
|
|
|
interface OAuthAppState {
|
|
authorizing: boolean;
|
|
result: Record<string, unknown> | null;
|
|
error: Error;
|
|
}
|
|
|
|
export default OAuthAppState;
|