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

ReportInfo

type ReportInfo =
| {
id: "LATE_SETUP_CALL";
}
| {
id: "UNKNOWN_DIRECTIVE";
rule: string;
}
| {
id: "UNKNOWN_THEME_VALUE";
key: string | undefined;
}
| {
id: "INJECT_CSS_ERROR";
error: Error;
css: string;
}
;

§Type

§
{
id: "LATE_SETUP_CALL";
}
| {
id: "UNKNOWN_DIRECTIVE";
rule: string;
}
| {
id: "UNKNOWN_THEME_VALUE";
key: string | undefined;
}
| {
id: "INJECT_CSS_ERROR";
error: Error;
css: string;
}
[src]