mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-20 18:41:35 +00:00
* Eslint 9 * Automatic changes * Manual changes * Process feedback * u
10 lines
410 B
TypeScript
10 lines
410 B
TypeScript
declare module 'zigbee2mqtt-frontend' {
|
|
export function getPath(): string;
|
|
}
|
|
|
|
declare module 'connect-gzip-static' {
|
|
import {IncomingMessage, ServerResponse} from 'http';
|
|
export type RequestHandler = (req: IncomingMessage, res: ServerResponse, finalhandler: (err: unknown) => void) => void;
|
|
export default function gzipStatic(root: string, options?: Record<string, unknown>): RequestHandler;
|
|
}
|