modify unit test

This commit is contained in:
Horiuchi_H 2014-08-24 00:11:05 +09:00
parent 95a310df64
commit da2bb07e03

View File

@ -12,6 +12,8 @@ declare module Express {
}
export interface Session {
[key: string]: any;
regenerate: (callback: (err: any) => void) => void;
destroy: (callback: (err: any) => void) => void;
reload: (callback: (err: any) => void) => void;