@salte-auth/azure
Version:
A Salte Auth provider for authenticating with Azure AD!
21 lines (20 loc) • 563 B
TypeScript
import { OpenIDProvider } from '@salte-auth/salte-auth';
export declare class Azure extends OpenIDProvider {
constructor(config: Azure.Config);
get name(): string;
get login(): string;
get logout(): string;
}
export interface Azure {
config: Azure.Config;
}
export declare namespace Azure {
interface Config extends OpenIDProvider.Config {
/**
* The domain of your Azure AD Instance.
*
* @example 'https://login.microsoftonline.com/tenant-id'
*/
url: string;
}
}