Repository URL to install this package:
|
Version:
1.2.7 ▾
|
import { Request as ExpressRequest, Response } from 'express'
export interface OneUrl {
full: string
host: string
}
export interface Request extends ExpressRequest {
SHOULD_CACHE_SSR?: boolean
oneUrl: OneUrl
}
export { Response }