Add: Node-redis-pubsub definitions

This commit is contained in:
Rene 2018-09-17 22:10:05 +02:00
parent 84a2cfa837
commit fab040385d
3 changed files with 64 additions and 0 deletions

28
types/node-redis-pubsub/index.d.ts vendored Normal file
View File

@ -0,0 +1,28 @@
// Type definitions for node-redis-pubsub 3.0.0
// Project: https://github.com/louischatriot/node-redis-pubsub#readme
// Definitions by: Rene Keijzer <https://github.com/renekeijzer>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as redis from 'redis';
declare function NRP(options:object) : NRP.NodeRedisPubSub;
declare namespace NRP {
function initClient(options:object) : NRP.NodeRedisPubSub;
class NodeRedisPubSub {
constructor(options : object);
getRedisClient(any:void): redis.RedisClient;
on(channel:string, handler:Function, callback?:Function):Function;
subscribe(channel:string, handler:Function, callback?:Function):Function;
emit(channel:string, message:string) : any;
publish(channel:string, message:string) : any;
quit(any:void):void;
end(any:void):void;
}
}
export = NRP;

View File

@ -0,0 +1,14 @@
{
"name": "node-redis-pubsub",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/redis": "^2.8.6"
}
}

View File

@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts"
]
}