api/frontend/src/types/IProvider.ts

9 lines
133 B
TypeScript

export interface IProvider {
name: string;
key: string;
authUrl: string;
clientId: string;
logoutUrl: string;
scope: string;
}