summaryrefslogtreecommitdiff
path: root/src/index.d.ts
blob: 292e5d34d5e8761ebe627e5e1447a4da4b05320f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import "express";
import { GathioConfig } from "./lib/config.js";

interface Locals {
    config: GathioConfig;
}

declare module "express" {
    export interface Response {
        locals: {
            config?: GathioConfig;
        };
    }
}