aboutsummaryrefslogtreecommitdiff
path: root/src/modules.d.ts
blob: 854702b1b36d832241d970bdb4fdefbb137fb31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// eslint-disable-next-line spaced-comment
/// <reference types="standalone-electron-types"/>

declare module "plugins" {
    const plugins: Record<string, import("./utils/types").Plugin>;
    export default plugins;
}

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