mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-02 18:11:36 +00:00
ed9d09a629
* Replace serve-static with connect-gzip-static in order to serve .gz files * Make linter happy Co-authored-by: nurikk <ainur@yojee.com> Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
10 lines
358 B
TypeScript
10 lines
358 B
TypeScript
declare module 'zigbee2mqtt-frontend' {
|
|
export function getPath(): string;
|
|
}
|
|
|
|
declare module 'connect-gzip-static' {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export type RequestHandler = (req: any, res: any) => void;
|
|
export default function gzipStatic(root: string, options?: Record<string, unknown>): RequestHandler;
|
|
}
|