You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
// @flow
|
|
|
|
import { createCommand, Command } from 'helpers/ipc'
|
|
import { fromPromise } from 'rxjs/observable/fromPromise'
|
|
import shouldFlashMcu from 'helpers/devices/shouldFlashMcu'
|
|
|
|
import type { DeviceInfo } from 'helpers/types'
|
|
|
|
type Result = boolean
|
|
|
|
const cmd: Command<DeviceInfo, Result> = createCommand('shouldFlashMcu', data =>
|
|
fromPromise(shouldFlashMcu(data)),
|
|
)
|
|
|
|
export default cmd
|
|
|