Vencord/src/pluginsModule.d.ts

10 lines
204 B
TypeScript
Raw Normal View History

2022-08-29 16:11:44 +00:00
declare module "plugins" {
const plugins: Record<string, import("./utils/types").Plugin>;
2022-08-29 16:11:44 +00:00
export default plugins;
}
declare module "git-hash" {
const hash: string;
export default hash;
}