Skip to main content

github.milestone

Home > @runlightyear/github > Milestone

Milestone type

Documentation: https://docs.github.com/webhooks-and-events/webhooks/webhook-events-and-payloads\#milestone

Signature:
declare type Milestone = {
closedAt: string | null;
closedIssues: number;
createdAt: string;
creator: User | null;
description: string | null;
dueOn: string | null;
htmlUrl: string;
id: number;
labelsUrl: string;
nodeId: string;
number: number;
openIssues: number;
state: "open" | "closed";
title: string;
updatedAt: string;
url: string;
};
References:

User