// Type definitions for express-brute-mongo // Project: https://github.com/auth0/express-brute-mongo // Definitions by: Cyril Schumacher // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module "express-brute-mongo" { /** * @summary MongoDB store adapter. * @class */ export = class MongoStore { /** * @summary Constructor. * @constructor * @param {Function} getCollection The collection. * @param {Object} options The otpions. */ constructor(getCollection: (collection: any) => void, options?: Object); } }