mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-06-23 05:31:47 +00:00
15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
declare module "zigbee2mqtt-frontend" {
|
|
const frontend: {
|
|
getPath: () => string;
|
|
};
|
|
|
|
export default frontend;
|
|
}
|
|
|
|
declare module "http" {
|
|
interface IncomingMessage {
|
|
originalUrl?: string;
|
|
path?: string;
|
|
}
|
|
}
|