UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

15 lines (13 loc) 317 B
/** * Copyright IBM Corp. 2024, 2025 */ 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; path: Array<string | number>; ruleset?: string; }