mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-07 23:37:35 +08: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();
|