Vencord/src/pluginsModule.d.ts

10 lines
190 B
TypeScript
Raw Normal View History

2022-08-29 16:11:44 +00:00
declare module "plugins" {
2022-08-29 18:27:47 +00:00
const plugins: 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;
}