Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x | import configure from './configureAuthManagement';
import hooks from './hooks';
// @ts-expect-error assign object to a function
configure.hooks = hooks;
export default configure;
export { hooks };
export { AuthenticationManagementService } from './services/AuthenticationManagementService';
export { CheckUniqueService } from './services/CheckUniqueService';
export { IdentityChangeService } from './services/IdentityChangeService';
export { PasswordChangeService } from './services/PasswordChangeService';
export { ResendVerifySignupService } from './services/ResendVerifySignupService';
export { ResetPwdLongService } from './services/ResetPwdLongService';
export { ResetPwdShortService } from './services/ResetPwdShortService';
export { SendResetPwdService } from './services/SendResetPwdService';
export { VerifySignupLongService } from './services/VerifySignupLongService';
export { VerifySignupSetPasswordLongService } from './services/VerifySignupSetPasswordLongService';
export { VerifySignupSetPasswordShortService } from './services/VerifySignupSetPasswordShortService';
export { VerifySignupShortService } from './services/VerifySignupShort';
export * from './types';
// commonjs
Eif (typeof module !== 'undefined') {
module.exports = Object.assign(configure, module.exports);
}
|