1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 02:16:23 +00:00
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"
}
}]
});