Vencord/src/plugins/silentTyping.ts

15 lines
351 B
TypeScript
Raw Normal View History

2022-09-29 20:02:01 +00:00
import definePlugin from '../utils/types';
export default definePlugin({
name: "SilentTyping",
author: "Vendicated",
description: "Hide that you are typing",
patches: [{
find: "startTyping:",
replacement: {
match: /startTyping:.+?,stop/,
replace: "startTyping:()=>{},stop"
}
}]
});