mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
250 B
TypeScript
14 lines
250 B
TypeScript
import MySQLStore = require('express-mysql-session');
|
|
|
|
const options = {
|
|
host: 'localhost',
|
|
port: 3306,
|
|
user: 'root',
|
|
password: '',
|
|
database: 'session_test'
|
|
};
|
|
|
|
const sessionStore = new MySQLStore(options);
|
|
|
|
sessionStore.close();
|