mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-06-25 06:31:40 +00:00
10 lines
436 B
TypeScript
10 lines
436 B
TypeScript
/**
|
|
* Handle sd_notify protocol, @see https://www.freedesktop.org/software/systemd/man/latest/sd_notify.html
|
|
* No-op if running on unsupported platforms or without Type=notify
|
|
* Soft-fails if improperly setup (this is not necessary for Zigbee2MQTT to function properly)
|
|
*/
|
|
export declare function initSdNotify(): Promise<{
|
|
notifyStopping: () => void;
|
|
stop: () => void;
|
|
} | undefined>;
|
|
//# sourceMappingURL=sd-notify.d.ts.map
|