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

Issue

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

Issues include warnings, errors, and deprecation notices.

interface Issue {
description?: string;
severity?:
| "SEVERITY_UNSPECIFIED"
| "DEPRECATION"
| "WARNING"
| "ERROR";
sourcePosition?: SourcePosition;
}

§Properties

§
description?: string
[src]

Short error description.

§
severity?: "SEVERITY_UNSPECIFIED" | "DEPRECATION" | "WARNING" | "ERROR"
[src]

The severity of the issue.

§
sourcePosition?: SourcePosition
[src]

Position of the issue in the Source.