interface AsukaAssemblyValidation {
    collisions: {
        clearanceId?: string;
        componentId: string;
        otherComponentId: string;
    }[];
    issues: AsukaAssemblyIssue[];
    valid: boolean;
}

Properties

collisions: {
    clearanceId?: string;
    componentId: string;
    otherComponentId: string;
}[]
valid: boolean