From 25a7d33576c46a2a44a765f181024b073cc76262 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Thu, 31 Mar 2016 22:30:33 +0200 Subject: [PATCH] Initial Commit --- socket.io-redis/socket.io-redis-tests.ts | 1 + socket.io-redis/socket.io-redis.d.ts | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 socket.io-redis/socket.io-redis-tests.ts create mode 100644 socket.io-redis/socket.io-redis.d.ts diff --git a/socket.io-redis/socket.io-redis-tests.ts b/socket.io-redis/socket.io-redis-tests.ts new file mode 100644 index 000000000..a417be85f --- /dev/null +++ b/socket.io-redis/socket.io-redis-tests.ts @@ -0,0 +1 @@ +/// diff --git a/socket.io-redis/socket.io-redis.d.ts b/socket.io-redis/socket.io-redis.d.ts new file mode 100644 index 000000000..38c12b305 --- /dev/null +++ b/socket.io-redis/socket.io-redis.d.ts @@ -0,0 +1,14 @@ +// Type definitions for socket.io-redis 1. +// Project: http://socket.io/ +// Definitions by: PROGRE , Damian Connolly , Florent Poujol +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare var io: SocketIORedisStatic; + +declare module 'socket.io-redis' { + export = io; +} + +interface SocketIORedisStatic { + +}