UNPKG

@accounts/server

Version:

Fullstack authentication and accounts-management

24 lines (22 loc) 1.03 kB
import { AccountsServer } from './accounts-server'; export { AccountsServerOptions } from './types/accounts-server-options'; export { generateRandomToken } from './utils/tokens'; export { getFirstUserEmail } from './utils/get-first-user-email'; export { ServerHooks } from './utils/server-hooks'; export { AccountsJsError } from './utils/accounts-error'; export { DatabaseInterfaceUserToken } from './types/DatabaseInterfaceUser.symbol'; export { DatabaseInterfaceSessionsToken } from './types/DatabaseInterfaceSessions.symbol'; export { AccountsCoreConfigToken } from './types/AccountsCoreConfig.symbol'; export { AuthenticationServicesToken } from './types/AuthenticationServices.symbol'; export { AuthenticationServices } from './types/authentication-services'; export { AuthenticateWithServiceErrors, LoginWithServiceErrors, ImpersonateErrors, FindSessionByAccessTokenErrors, RefreshTokensErrors, LogoutErrors, ResumeSessionErrors, } from './errors'; export default AccountsServer; export { AccountsServer };