theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
20 lines (17 loc) • 371 B
text/typescript
/**
* Plugin power status (Kind of action)
* @see PluginControl
*/
export const PluginPowerStatusEnum = {
/**
* Running (Start plugin)
*/
RUNNING: 'RUNNING',
/**
* Stop
*/
STOP: 'STOP',
} as const;
/** type definition of PluginControlEnum */
export type PluginPowerStatusEnum =
typeof PluginPowerStatusEnum[keyof typeof PluginPowerStatusEnum];