Type Alias LogusContext

Source
Expand description

Represents the general context for Logus. This context includes the octokit instance and the organization payload.

type LogusContext = { octokit: LogusOctokit } & {
    payload: Pick<Context<"organization">["payload"], "organization">;
}