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

ExpressionReport

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

Describes where in a file an expression is found and what it was evaluated to over the course of its use.

interface ExpressionReport {
children?: ExpressionReport[];
sourcePosition?: SourcePosition;
values?: ValueCount[];
}

§Properties

§

Subexpressions

§
sourcePosition?: SourcePosition
[src]

Position of expression in original rules source.

§
values?: ValueCount[]
[src]

Values that this expression evaluated to when encountered.