Created
August 28, 2023 04:38
-
-
Save orion55/d66f7a641f82f09381b70d2bf8f0b317 to your computer and use it in GitHub Desktop.
str-utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'str-utils' { | |
type StrUtil = (input: string) => string; | |
export const strReverse: StrUtil; | |
export const strToLower: StrUtil; | |
export const strToUpper: StrUtil; | |
export const strRandomize: StrUtil; | |
export const strInvertCase: StrUtil; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment