Type Alias PullRequestCreatorsHistoryData

PullRequestCreatorsHistoryData: {
    path: { owner: string; repo: string };
    query?: { from?: string; per?: "day" | "week" | "month"; to?: string };
}

Type declaration

  • path: { owner: string; repo: string }
    • owner: string

      The owner of the repo.

    • repo: string

      The name of the repo.

  • Optionalquery?: { from?: string; per?: "day" | "week" | "month"; to?: string }
    • Optionalfrom?: string

      The start date of the time range.

    • Optionalper?: "day" | "week" | "month"

      The time interval of the data points.

    • Optionalto?: string

      The end date of the time range.