mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-01-16 01:55:55 +00:00
10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
|
/**
|
||
|
* Constructs the routing header from the given params
|
||
|
*
|
||
|
* @param {Object} params - the request header parameters.
|
||
|
* @return {string} the routing header value.
|
||
|
*/
|
||
|
export declare function fromParams(params: {
|
||
|
[index: string]: {};
|
||
|
}): string;
|