Vencord/src/plugins/silentTyping.ts
Ven 74c3930e0a
add eslint config (#53)
* eslint

* workflow

* lint main
2022-10-06 00:42:58 +02:00

16 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"
}
}]
});