import BaseModel from './BaseModel'; export default class Harness extends BaseModel { id: string; manufacturer_id: string; name: string; slug: string; en_class: string; weight_min: number; weight_max: number; height_min: number; height_max: number; harness_weight: number; flight_target: string; cover_path: string; total_flights: number; is_active: boolean; manufacturer: any; get fillable(): string[]; constructor(data?: any); }