UNPKG

@nxarch/nest-nguniversal

Version:

A NestJS library to serve your NestJS Angular Universal project

6 lines (5 loc) 238 B
import { Request } from 'express'; export interface CacheStorage { set(key: string, value: string, request: Request, expiresIn: number): string | void; get(key: string, request: Request): Promise<string | null> | string | null; }