mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* bug: fix typing issue with connect-sqlite3 * fix(tests): fix tslint.json * fix: typings for connect-sqlite3 to fit `session` * bug: fix tslint.json * fix: use spaces to indent
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import connectsqlite3 = require('connect-sqlite3');
|
|
import connect = require("express-session");
|
|
|
|
// $ExpectType SQLiteStoreInitator
|
|
const sqlite = connectsqlite3(connect);
|
|
|
|
// $ExpectType SQLiteStore
|
|
const connection = new sqlite();
|