Vencord/src/plugins/silentTyping.ts

16 lines
393 B
TypeScript
Raw Normal View History

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