@studiohyperdrive/ngx-auth
Version:
A library of core authentication functionality used with @studiohyperdrive/types-auth.
10 lines (9 loc) • 336 B
TypeScript
import { AuthenticatedUserSession, AuthenticationResponse } from '@studiohyperdrive/types-auth';
/**
* Returns a mock authentication response
*/
export declare const NgxAuthenticationResponseMock: AuthenticationResponse<{
name: string;
}, AuthenticatedUserSession<'A' | 'B', 'Admin' | 'User'>, {
requestPassword: boolean;
}>;