mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 21:10:23 +00:00
Merge pull request #15268 from DefinitelyTyped/pvb/sessionwhitespace
Fix whitespace
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
import FileStore = require("session-file-store");
|
||||
|
||||
const options:FileStore.Options = {
|
||||
const options: FileStore.Options = {
|
||||
path: "./tmp/sessions/",
|
||||
logFn:function(a:string) {
|
||||
|
||||
logFn: (a: string) => {
|
||||
}
|
||||
};
|
||||
|
||||
const sessionStore = new FileStore(options);
|
||||
|
||||
sessionStore.list(function (err: any, file: Array<string>) {
|
||||
sessionStore.list((err: any, file: Array<string>) => {
|
||||
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user