Repository URL to install this package:
|
Version:
0.0.15 ▾
|
/**
* @todo put as its own package, inlined to avoid issue with graphql until docker is here, is in @skava/request
* @todo ^ dedupe
*/
import { Request as ExpressRequest } from 'express';
/**
* @todo import typings that already has this
*/
export declare type ExpressRequestWithHash = ExpressRequest & {
hash?: string;
IS_COMPAT: boolean;
req?: ExpressRequestWithHash;
};
declare function fromRequestToHash(request: ExpressRequestWithHash, namespace?: string): string;
export { fromRequestToHash };
export default fromRequestToHash;