mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Fix more strict typescript errors (#35514)
This commit is contained in:
@@ -68,9 +68,9 @@ export type LdapConnectionInfo = LdapServerInfo[];
|
||||
|
||||
export interface LdapState {
|
||||
connectionInfo: LdapConnectionInfo;
|
||||
user?: LdapUser | null;
|
||||
syncInfo?: SyncInfo | null;
|
||||
connectionError?: LdapError | null;
|
||||
userError?: LdapError | null;
|
||||
ldapError?: LdapError | null;
|
||||
user?: LdapUser;
|
||||
syncInfo?: SyncInfo;
|
||||
connectionError?: LdapError;
|
||||
userError?: LdapError;
|
||||
ldapError?: LdapError;
|
||||
}
|
||||
|
||||
@@ -88,11 +88,11 @@ export interface UserOrg {
|
||||
}
|
||||
|
||||
export interface UserAdminState {
|
||||
user: UserDTO | null;
|
||||
user?: UserDTO;
|
||||
sessions: UserSession[];
|
||||
orgs: UserOrg[];
|
||||
isLoading: boolean;
|
||||
error?: UserAdminError | null;
|
||||
error?: UserAdminError;
|
||||
}
|
||||
|
||||
export interface UserAdminError {
|
||||
|
||||
Reference in New Issue
Block a user