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