aboutsummaryrefslogtreecommitdiff
path: root/src/pluginsModule.d.ts
blob: d91efae8de9ded29b374e4b357ea3f3c86e98bb8 (plain)
1
2
3
4
5
6
7
8
9
declare module "plugins" {
    const plugins: Record<string, import("./utils/types").Plugin>;
    export default plugins;
}

declare module "git-hash" {
    const hash: string;
    export default hash;
}