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

EventInfo

import type { EventInfo } from "https://aws-api.deno.dev/v0.4/services/codegurureviewer.ts?docs=full";

Information about an event. The event might be a push, pull request, scheduled request, or another type of event.

interface EventInfo {
Name?: string | null;
State?: string | null;
}

§Properties

§
Name?: string | null
[src]

The name of the event. The possible names are pull_request, workflow_dispatch, schedule, and push

§
State?: string | null
[src]

The state of an event. The state might be open, closed, or another state.