* Upgrade Angular, NestJS and Nx * Replace executor to @nx/angular:webpack-browser and @nx/angular:webpack-dev-server * Add target for copying assets * Improve redirection of home page * Update changelog
9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
import { Store } from 'cache-manager';
|
|
import { createClient } from 'redis';
|
|
|
|
export interface RedisStore extends Store {
|
|
getClient: () => ReturnType<typeof createClient>;
|
|
isCacheableValue: (value: any) => boolean;
|
|
name: 'redis';
|
|
}
|