theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
24 lines • 556 B
TypeScript
/**
* Battery charging state
*/
export declare const ChargingStateEnum: {
/**
* Undefined item
*/
readonly UNKNOWN: "UNKNOWN";
/**
* battery charging
*/
readonly CHARGING: "CHARGING";
/**
* battery charged
*/
readonly CHARGED: "CHARGED";
/**
* battery disconnect
*/
readonly DISCONNECT: "DISCONNECT";
};
/** type definition of ChargingStateEnum */
export type ChargingStateEnum = typeof ChargingStateEnum[keyof typeof ChargingStateEnum];
//# sourceMappingURL=charging-state.d.ts.map