/* * ============================================================================= * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform * ----------------------------------------------------------------------------- * File: server/types/modules.d.ts * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Website: https://www.spboucher.ai * Demo: https://www.vquant.ai * License: MIT (see LICENSE) * * Copyright © 2026 Simon-Pierre Boucher. All rights reserved. * ============================================================================= */ declare module 'better-sqlite3-session-store' { import session from 'express-session'; function SqliteStore(session: typeof import('express-session')): { new (options: { client: unknown; expired?: { clear?: boolean; intervalMs?: number } }): session.Store; }; export default SqliteStore; }