Files
boc/landvex-report-system/node_modules/@redis/client/dist/index.d.ts
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

27 lines
2.3 KiB
TypeScript

export { RedisArgument, RedisFunctions, RedisModules, RedisScripts, RespVersions, TypeMapping, DEFAULT_RESP, } from './lib/RESP/types';
export { RESP_TYPES } from './lib/RESP/decoder';
export { VerbatimString } from './lib/RESP/verbatim-string';
export { defineScript } from './lib/lua-script';
export { digest } from './lib/utils/digest';
export * from './lib/errors';
import RedisClient, { AnyRedisClientOptions, RedisClientOptions, RedisClientType } from './lib/client';
export { RedisClient, AnyRedisClientOptions, RedisClientOptions, RedisClientType };
export declare const createClient: typeof RedisClient.create;
export { CommandParser } from './lib/client/parser';
import { RedisClientPool, RedisPoolOptions, RedisClientPoolType } from './lib/client/pool';
export { RedisClientPool, RedisClientPoolType, RedisPoolOptions };
export declare const createClientPool: typeof RedisClientPool.create;
import RedisCluster, { RedisClusterOptions, RedisClusterType } from './lib/cluster';
export { RedisCluster, RedisClusterType, RedisClusterOptions };
export declare const createCluster: typeof RedisCluster.create;
import RedisSentinel from './lib/sentinel';
export { RedisSentinel };
export { RedisSentinelClient } from './lib/sentinel';
export { RedisSentinelOptions, RedisSentinelType, RedisSentinelClientType } from './lib/sentinel/types';
export declare const createSentinel: typeof RedisSentinel.create;
export { GEO_REPLY_WITH, GeoReplyWith } from './lib/commands/GEOSEARCH_WITH';
export { SetOptions, CLIENT_KILL_FILTERS, CLIENT_UNBLOCK_MODES, FAILOVER_MODES, CLUSTER_SLOT_STATES, COMMAND_LIST_FILTER_BY, REDIS_FLUSH_MODES, AR_PREDICATE_TYPES, AR_PREDICATE_COMBINATORS, AR_OPERATIONS } from './lib/commands';
export { BasicClientSideCache, BasicPooledClientSideCache } from './lib/client/cache';
export { OpenTelemetry } from './lib/opentelemetry';
export { CHANNELS, type ChannelEvents, type CommandTraceContext, type BatchCommandTraceContext, type BatchOperationContext, type ConnectTraceContext, type ConnectionReadyEvent, type ConnectionClosedEvent, type ConnectionRelaxedTimeoutEvent, type ConnectionHandoffEvent, type ClientErrorEvent, type MaintenanceNotificationEvent, type PubSubMessageEvent, type CacheRequestEvent, type CacheEvictionEvent, type CommandReplyEvent, type PoolConnectionWaitEvent, } from './lib/client/tracing';
//# sourceMappingURL=index.d.ts.map