import { PaginationProps } from "@/shared/Pagination"; export interface FirmwareItem { id?: string; mainVer?: number; verDetail?: string; items?: { name?: string; md5?: string; downloadUrl?: string; compress?: string; ver?: number; }[]; depends?: { downloadUrl?: string; fileName?: string; md5?: string; path?: string; version?: number; type?: number; }[]; boxTypes?: number[]; remark?: string; } export interface FirmwareTableProps { data?: FirmwareItem[]; pagination?: PaginationProps; }