fix acl/acl-redisBackend compile error

This commit is contained in:
Basarat Syed
2015-04-16 09:27:56 +10:00
parent ad1887a3d3
commit c9d2949f7e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
declare module "acl" {
import redis = require('redis');
interface AclStatic {
export interface AclStatic {
redisBackend: RedisBackendStatic;
}
+1 -1
View File
@@ -19,7 +19,7 @@ declare module "acl" {
type AllowedCallback = (err: Error, allowed: boolean) => any;
type GetUserId = (req: http.ServerRequest, res: http.ServerResponse) => Value;
interface AclStatic {
export interface AclStatic {
new (backend: Backend<any>, logger: Logger, options: Option): Acl;
new (backend: Backend<any>, logger: Logger): Acl;
new (backend: Backend<any>): Acl;