Arno Kaimbacher
b6fdfbff41
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s
- npm updated - added createHashValues and dlete inside File.ts - added dataset_count property inside Subject.ts - corrected rotes.ts with correct permissions
14 lines
396 B
TypeScript
14 lines
396 B
TypeScript
/**
|
|
* Contract source: https://git.io/JemcN
|
|
*
|
|
* Feel free to let us know via PR, if you find something broken in this config
|
|
* file.
|
|
*/
|
|
|
|
import { InferConnectionsFromConfig } from '@adonisjs/redis/build/config'
|
|
import redisConfig from '../config/redis'
|
|
|
|
declare module '@ioc:Adonis/Addons/Redis' {
|
|
interface RedisConnectionsList extends InferConnectionsFromConfig<typeof redisConfig> {}
|
|
}
|