@fivem-ts/shared
Version:
FiveM Typescript wrapper shared part
15 lines (14 loc) • 319 B
TypeScript
/**
* Reverses the characters in a string.
*
* @example
* ```ts
* const result = reverseString("Hello");
* console.log(result); // "olleH"
* ```
*
* @param {string} input - The string to be reversed.
*
* @return {string} The reversed string.
*/
export declare function reverseString(input: string): string;