This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/types/IProvider.ts
Dominik Pschenitschni 63fb8a1962
Some checks failed
continuous-integration/drone/push Build is failing
feat: Login script setup (#2417)
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #2417
Reviewed-by: konrad <k@knt.li>
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
2022-10-01 15:58:39 +00:00

7 lines
97 B
TypeScript

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