altair-graphql-core
Version:
Several of the core logic for altair graphql client
8 lines • 392 B
TypeScript
declare const IDENTITY_PROVIDERS: {
readonly GOOGLE: "GOOGLE";
readonly GITHUB: "GITHUB";
};
type IdentityProvider = (typeof IDENTITY_PROVIDERS)[keyof typeof IDENTITY_PROVIDERS];
export { IDENTITY_PROVIDERS, IdentityProvider };
export declare function getPopupUrl(url: string, nonce: string, source: string, provider: IdentityProvider): string;
//# sourceMappingURL=providers.d.ts.map