isa-auth-core
Version:
7 lines (6 loc) • 393 B
TypeScript
import type { AuthServiceType } from './service';
import type { ButtonType } from './components';
import type { ProviderType } from './providers';
export type CoreProvicerType = Exclude<ProviderType | AuthServiceType, 'none'>;
export declare const providerToServiceMap: Record<CoreProvicerType, AuthServiceType>;
export declare const providerToButtonMap: Record<CoreProvicerType, ButtonType>;