Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Diagnostic

import type { Diagnostic } from "https://googleapis.deno.dev/v1/servicemanagement:v1.ts";

Represents a diagnostic message (error or warning)

interface Diagnostic {
kind?: "WARNING" | "ERROR";
location?: string;
message?: string;
}

§Properties

§
kind?: "WARNING" | "ERROR"
[src]

The kind of diagnostic information provided.

§
location?: string
[src]

File name and line number of the error or warning.

§
message?: string
[src]

Message describing the error or warning.