2022-10-05 22:42:58 +00:00
|
|
|
import definePlugin from "../utils/types";
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
});
|