5d0fbf705d
* feat: make some check optional (e.g. connected peers > 0 or funded chequebook) * fix: alter setup step text to better describe what needs to be done * refactor: rename isOk from boolean value to checkState enum * fix: add checking for any error
22 lines
357 B
TypeScript
22 lines
357 B
TypeScript
/// <reference types="react-scripts" />
|
|
|
|
interface LatestBeeRelease {
|
|
name: string
|
|
html_url: string
|
|
}
|
|
|
|
interface SwarmMetadata {
|
|
size: number
|
|
name: string
|
|
type?: string
|
|
}
|
|
|
|
interface Metadata extends SwarmMetadata {
|
|
type: string
|
|
isWebsite: boolean
|
|
count?: number
|
|
hash?: string
|
|
}
|
|
|
|
type FilePath = File & { path?: string; fullPath?: string }
|