UNPKG

etcher-sdk

Version:
12 lines (11 loc) 246 B
import { Dictionary } from '../utils'; export interface ImageJSONPart { filename: string; crc: number; len: number; zLen: number; partitionIndex?: string; } export type ImageJSON = Dictionary<{ parts: ImageJSONPart[]; }>;