Skip to content

Commit

Permalink
fixing types
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Grato committed Jul 31, 2024
1 parent a6419eb commit 9d30ae2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions appserver/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export type NavigationLinkBlockT = {
}

// Github
export interface GithubRepositoryT {
export type GithubRepositoryT = {
id: number
name: string
full_name: string
Expand All @@ -59,22 +59,22 @@ export interface GithubRepositoryT {
default_branch: string
}

export interface GithubOwnerT {
export type GithubOwnerT = {
login: string
id: number
avatar_url: string
html_url: string
}

export interface GithubContributorT {
export type GithubContributorT = {
login: string
id: number
avatar_url: string
html_url: string
contributions: number
}

export interface GithubIssueT {
export type GithubIssueT = {
id: number
number: number
title: string
Expand All @@ -88,14 +88,14 @@ export interface GithubIssueT {
body: string
}

export interface GithubUserT {
export type GithubUserT = {
login: string
id: number
avatar_url: string
html_url: string
}

export interface GithubPullRequestT {
export type GithubPullRequestT = {
id: number
number: number
state: string
Expand All @@ -108,7 +108,7 @@ export interface GithubPullRequestT {
merged_at: string | null
}

export interface GithubBranchT {
export type GithubBranchT = {
name: string
commit: {
sha: string
Expand All @@ -117,7 +117,7 @@ export interface GithubBranchT {
protected: boolean
}

export interface GithhubTagT {
export type GithhubTagT = {
name: string
commit: {
sha: string
Expand All @@ -127,7 +127,7 @@ export interface GithhubTagT {
tarball_url: string
}

export interface GithubContentT {
export type GithubContentT = {
name: string
path: string
sha: string
Expand All @@ -139,7 +139,7 @@ export interface GithubContentT {
type: string
}

export interface GithubCommitT {
export type GithubCommitT = {
sha: string
node_id: string
commit: {
Expand Down

0 comments on commit 9d30ae2

Please sign in to comment.