1 2 3 4 5 6 7 8 9 10 11 12 | /** * @Method: Returns a three-word passphrase with a separator string * between each word - order is adjective-color-animal * @param {string} [sep = ' '] - The separator charatcter * @param {string} [prevent = ''] - a matching string used * to prevent (very unlikely) duplicate results * @returns {string} */ export declare function phrase(sep?: string, prevent?: string, short?: boolean): string; export declare function setSeed(seedString: string): void; export declare function resetSeed(): void; |