mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-18 09:38:54 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
15 lines
255 B
TypeScript
15 lines
255 B
TypeScript
declare module "zigbee2mqtt-frontend" {
|
|
const frontend: {
|
|
getPath: () => string;
|
|
};
|
|
|
|
export default frontend;
|
|
}
|
|
|
|
declare module "node:http" {
|
|
interface IncomingMessage {
|
|
originalUrl?: string;
|
|
path?: string;
|
|
}
|
|
}
|