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