UNPKG

@mi-gpt/utils

Version:
12 lines (10 loc) 370 B
/** * 转北京时间:2023年12月12日星期二 12:46 */ declare function toUTC8Time(date: Date): string; declare function replaceVars(text: string, vars: Record<string, string | (() => string)>): string; /** * 移除文字中的不发音字符(emoji) */ declare function removeEmojis(text: string): string; export { removeEmojis, replaceVars, toUTC8Time };