-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext-types.d.ts
More file actions
28 lines (26 loc) · 816 Bytes
/
next-types.d.ts
File metadata and controls
28 lines (26 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// User defined type definitions. Please add type definitions for global types here
interface Meta {
readonly itemCount: number;
}
interface DBContributorsPR {
readonly event_id: string;
readonly pr_additions: number;
readonly pr_author_login: string;
readonly pr_base_label: string;
readonly pr_changed_files: number;
readonly pr_comments: number;
readonly pr_commits: number;
readonly pr_created_at: string;
readonly pr_deletions: number;
readonly pr_head_label: string;
readonly pr_is_draft: boolean;
readonly pr_is_merged: boolean;
readonly pr_head_ref: string;
readonly pr_merged_at: string;
readonly pr_number: number;
readonly pr_state: string;
readonly pr_title: string;
readonly pr_updated_at: string;
readonly repo_name: string;
readonly pr_closed_at: string;
}