import "./_dnt.polyfills.js"; import { type Func, func_remember } from "./func.js"; /** * 反转字符串 */ export declare const str_reverse: (str: string) => string; /** * 寻找字符串开头是否指定字符串,是的话,进行替换 */ export declare const str_replace_start: (str: string, searchValue: string, replaceValue: string) => string; /** * 寻找字符串结尾是否指定字符串,是的话,进行替换 */ export declare const str_replace_end: (str: string, searchValue: string, replaceValue: string) => string; export declare const str_trim_indent: (str: string) => string; /** 对于人类来说是空格的字符 */ export declare const str_human_space: Set; export declare const human_space_regex: func_remember.Return<() => { start: RegExp; end: RegExp; all: RegExp; }>; export declare const str_human_trim: (str: string) => string; /** * get code snippet from function body */ export declare const stringify_fn_body: (fn: Func, tabSize?: number) => string; //# sourceMappingURL=string.d.ts.map