Vencord/src/pluginsModule.d.ts

10 lines
190 B
TypeScript
Raw Normal View History

2022-08-29 18:11:44 +02:00
declare module "plugins" {
2022-08-29 20:27:47 +02:00
const plugins: import("./utils/types").Plugin[];
2022-08-29 18:11:44 +02:00
export default plugins;
}
declare module "git-hash" {
const hash: string;
export default hash;
}