7 lines
291 B
TypeScript
7 lines
291 B
TypeScript
import { FastifyRequest } from 'fastify';
|
|
/**
|
|
* Session service for anonymous user tracking
|
|
* Reads X-Session-ID header, creates session if doesn't exist
|
|
*/
|
|
export declare function getOrCreateSession(request: FastifyRequest): Promise<string>;
|
|
//# sourceMappingURL=session.service.d.ts.map
|