/** * Generate a hash from a string, simple and fast. * reference: https://werxltd.com/wp/2010/05/13/javascript-implementation-of-javas-string-hashcode-method/ * @version 2.1.0 * @param {string} str Input string * @param {Object} options Options * @param {boolean} options.forcePositive If true, the hash will be forcePositive. * @param {boolean} options.caseSensitive Case sensitive * @param {boolean} options.seed Seed for the hash */ export declare function fastHashCode(str: string, options?: { forcePositive?: boolean; caseSensitive?: boolean; seed?: number; }): number; export default fastHashCode;