8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
/**
|
|
* Hash function.
|
|
*
|
|
* @param itemList The items to be hashed.
|
|
* @return The hash code.
|
|
*/
|
|
export declare function hash(...itemList: any[]): number;
|