/** * Server level command constants for Eufy WebSocket API * * Contains all server command string constants and enums for server operations and events. */ export declare const SERVER_COMMANDS: { readonly START_LISTENING: "start_listening"; readonly SET_API_SCHEMA: "set_api_schema"; }; export type ServerCommandType = (typeof SERVER_COMMANDS)[keyof typeof SERVER_COMMANDS]; /** * Server event constants */ export declare const SERVER_EVENTS: { readonly SHUTDOWN: "shutdown"; }; export type ServerEventType = (typeof SERVER_EVENTS)[keyof typeof SERVER_EVENTS]; //# sourceMappingURL=constants.d.ts.map