isa-auth-core
Version:
10 lines (9 loc) • 364 B
TypeScript
import AuthBaseService from './baseAuthService';
import JwtService from './jwtService';
declare const AuthService: {
base: typeof AuthBaseService;
jwt: typeof JwtService;
};
export type AuthServiceType = keyof typeof AuthService;
export declare const getAuthService: (serviceType: AuthServiceType) => typeof AuthBaseService | typeof JwtService;
export {};