| 30 | } |
| 31 | |
| 32 | export interface IAuthor { |
| 33 | login: string; |
| 34 | id: number; |
| 35 | // eslint-disable-next-line camelcase |
| 36 | node_id: string; |
| 37 | // eslint-disable-next-line camelcase |
| 38 | avatar_url: string; |
| 39 | // eslint-disable-next-line camelcase |
| 40 | gravatar_id: string; |
| 41 | url: string; |
| 42 | // eslint-disable-next-line camelcase |
| 43 | html_url: string; |
| 44 | // eslint-disable-next-line camelcase |
| 45 | followers_url: string; |
| 46 | // eslint-disable-next-line camelcase |
| 47 | following_url: string; |
| 48 | // eslint-disable-next-line camelcase |
| 49 | gists_url: string; |
| 50 | // eslint-disable-next-line camelcase |
| 51 | starred_url: string; |
| 52 | // eslint-disable-next-line camelcase |
| 53 | subscriptions_url: string; |
| 54 | // eslint-disable-next-line camelcase |
| 55 | organizations_url: string; |
| 56 | // eslint-disable-next-line camelcase |
| 57 | repos_url: string; |
| 58 | // eslint-disable-next-line camelcase |
| 59 | events_url: string; |
| 60 | // eslint-disable-next-line camelcase |
| 61 | received_events_url: string; |
| 62 | type: string; |
| 63 | // eslint-disable-next-line camelcase |
| 64 | site_admin: boolean; |
| 65 | } |
| 66 | |
| 67 | export interface IAssetsEntity { |
| 68 | url: string; |
nothing calls this directly
no outgoing calls
no test coverage detected