// Type definitions for node_acl 0.4.7 // Project: https://github.com/optimalbits/node_acl // Definitions by: Qubo // Definitions: https://github.com/borisyankov/DefinitelyTyped /// /// declare module "acl" { import redis = require('redis'); interface AclStatic { redisBackend: RedisBackendStatic; } interface RedisBackend extends Backend { } interface RedisBackendStatic { new(redis: redis.RedisClient, prefix: string): RedisBackend; new(redis: redis.RedisClient): RedisBackend; } }