fixed config imports

Signed-off-by: Ruslan Nasyrov <ruslan.nasyrov.f@gmail.com>
This commit is contained in:
Ruslan Nasyrov
2025-03-13 14:04:58 +05:00
parent f9f72525a9
commit 98ff86af2e
+3 -5
View File
@@ -15,8 +15,6 @@
*/
import { HumanDuration } from '@backstage/types';
import { HumanDuration } from '@backstage/types';
export interface Config {
auth?: {
providers?: {
@@ -38,9 +36,9 @@ export interface Config {
signIn?: {
resolvers: Array<
| {
resolver: 'emailLocalPartMatchingUserEntityName';
allowedDomains?: string[];
}
resolver: 'emailLocalPartMatchingUserEntityName';
allowedDomains?: string[];
}
| { resolver: 'emailMatchingUserEntityProfileEmail' }
>;
};