/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
import { Severity } from "../enums/aplication.enum.js";
import { IRange } from "./lint-range.model.js";

export interface IlintResponse {
  code: string | number;
  message: string;
  severity: Severity;
  range: IRange;
}

export default IlintResponse;
