1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-25 08:46:25 +00:00
Vencord/src/plugins/silentTyping.ts
2022-10-01 02:27:28 +02:00

15 lines
393 B
TypeScript

import definePlugin from '../utils/types';
import { Devs } from '../utils/constants';
export default definePlugin({
name: "SilentTyping",
authors: [Devs.Ven],
description: "Hide that you are typing",
patches: [{
find: "startTyping:",
replacement: {
match: /startTyping:.+?,stop/,
replace: "startTyping:()=>{},stop"
}
}]
});