Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { Redis, RedisOptions } from "ioredis";
  2.  
  3. declare module 'egg' {
  4.   // extend app
  5.   interface Application {
  6.     redis: Redis;
  7.   }
  8.  
  9.   // extend your config
  10.   interface EggAppConfig {
  11.     redis: RedisOptions;
  12.   }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement