Api: Fix favorites with non-ascii names could overlap

This commit is contained in:
nathan
2024-03-04 15:12:54 -07:00
parent 98cf3415ca
commit b1f20ddbb8
3 changed files with 38 additions and 5 deletions

View File

@ -666,6 +666,15 @@ declare interface IegwGlobal
* @return {string}
*/
encodePathComponent(_comp : string) : string;
/**
* Hash a string
*
* @param string
*/
async
hashString(name : any) : Promise<string>;
/**
* Escape HTML special chars, just like PHP
*