Socket
Socket
Sign inDemoInstall

@types/connect-mongodb-session

Package Overview
Dependencies
169
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/connect-mongodb-session

TypeScript definitions for connect-mongodb-session


Version published
Weekly downloads
4.9K
increased by0.39%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Installation

npm install --save @types/connect-mongodb-session

Summary

This package contains type definitions for connect-mongodb-session (https://github.com/mongodb-js/connect-mongodb-session#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-mongodb-session.

index.d.ts

import session = require("express-session");
import { MongoClient, MongoClientOptions } from "mongodb";

export = ConnectMongoDBSession;

declare function ConnectMongoDBSession(fn: typeof session): typeof ConnectMongoDBSession.MongoDBStore;

declare namespace ConnectMongoDBSession {
    class MongoDBStore extends session.Store {
        constructor(connection?: MongoDBSessionOptions, callback?: (error: Error) => void);
        client: MongoClient;

        get(sid: string, callback: (err: any, session?: session.SessionData | null) => void): void;
        set(sid: string, session: session.SessionData, callback?: (err?: any) => void): void;
        destroy(sid: string, callback?: (err?: any) => void): void;
        all(
            callback: (err: any, obj?: session.SessionData[] | { [sid: string]: session.SessionData } | null) => void,
        ): void;
        clear(callback?: (err?: any) => void): void;
    }

    interface MongoDBSessionOptions {
        uri: string;
        collection: string;
        expires?: number | undefined;
        databaseName?: string | undefined;
        connectionOptions?: MongoClientOptions | undefined;
        idField?: string | undefined;
        expiresKey?: string | undefined;
        expiresAfterSeconds?: number | undefined;
    }
}

Additional Details

Credits

These definitions were written by Nattapong Sirilappanich, and Ravi van Rooijen.

FAQs

Last updated on 07 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc