3.0.4 • Published 6 months ago

@types/node-redis-pubsub v3.0.4

Weekly downloads
210
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/node-redis-pubsub

Summary

This package contains type definitions for node-redis-pubsub (https://github.com/louischatriot/node-redis-pubsub#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-redis-pubsub.

index.d.ts

// Type definitions for node-redis-pubsub 3.0
// Project: https://github.com/louischatriot/node-redis-pubsub#readme
// Definitions by: Rene Keijzer <https://github.com/renekeijzer>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

import * as redis from "redis";

declare function NRP(options: object): NRP.NodeRedisPubSub;
declare namespace NRP {
    function initClient(options: object): NodeRedisPubSub;
    class NodeRedisPubSub {
        constructor(options: object);
        getRedisClient(): redis.RedisClient;
        on(
            channel: string,
            handler: (data: string, channel: string) => void,
            callback?: () => void
        ): () => void;
        subscribe(
            channel: string,
            handler: (data: string, channel: string) => void,
            callback?: () => void
        ): () => void;
        emit(channel: string, message: string): void;
        publish(channel: string, message: string): void;
        quit(): void;
        end(): void;
    }
}

export = NRP;

Additional Details

  • Last updated: Thu, 09 Dec 2021 09:01:24 GMT
  • Dependencies: @types/redis
  • Global values: none

Credits

These definitions were written by Rene Keijzer.

3.0.4

6 months ago

3.0.3

7 months ago

3.0.2

8 months ago

3.0.1

2 years ago

3.0.0

6 years ago