mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
* initial devices.json * initial hardware components * testing page at /docs/hardware/supported/template * WIP Changes * Home page work & updates * Fix build * Fix external link button * Setup linting * rename, cleanup & lint * seperate lint cmd for now Co-authored-by: Foster Irwin <foster@jfirwin.com> Co-authored-by: Sacha Weatherstone <sachaw100@hotmail..om>
129 lines
2.5 KiB
TypeScript
129 lines
2.5 KiB
TypeScript
export interface User {
|
|
login: string;
|
|
id: number;
|
|
node_id: string;
|
|
avatar_url: string;
|
|
gravatar_id: string;
|
|
url: string;
|
|
html_url: string;
|
|
followers_url: string;
|
|
following_url: string;
|
|
gists_url: string;
|
|
starred_url: string;
|
|
subscriptions_url: string;
|
|
organizations_url: string;
|
|
repos_url: string;
|
|
events_url: string;
|
|
received_events_url: string;
|
|
type: string;
|
|
site_admin: boolean;
|
|
name: string;
|
|
company: string | null;
|
|
blog: string;
|
|
location: string;
|
|
email: string | null;
|
|
hireable: string | null;
|
|
bio: string | null;
|
|
twitter_username: string | null;
|
|
public_repos: number;
|
|
public_gists: number;
|
|
followers: number;
|
|
following: number;
|
|
created_at: string;
|
|
updated_at: string;
|
|
}
|
|
|
|
export interface Author {
|
|
login: string;
|
|
id: number;
|
|
node_id: string;
|
|
avatar_url: string;
|
|
gravatar_id: string;
|
|
url: string;
|
|
html_url: string;
|
|
followers_url: string;
|
|
following_url: string;
|
|
gists_url: string;
|
|
starred_url: string;
|
|
subscriptions_url: string;
|
|
organizations_url: string;
|
|
repos_url: string;
|
|
events_url: string;
|
|
received_events_url: string;
|
|
type: string;
|
|
site_admin: boolean;
|
|
}
|
|
|
|
export interface Uploader {
|
|
login: string;
|
|
id: number;
|
|
node_id: string;
|
|
avatar_url: string;
|
|
gravatar_id: string;
|
|
url: string;
|
|
html_url: string;
|
|
followers_url: string;
|
|
following_url: string;
|
|
gists_url: string;
|
|
starred_url: string;
|
|
subscriptions_url: string;
|
|
organizations_url: string;
|
|
repos_url: string;
|
|
events_url: string;
|
|
received_events_url: string;
|
|
type: string;
|
|
site_admin: boolean;
|
|
}
|
|
|
|
export interface Asset {
|
|
url: string;
|
|
id: number;
|
|
node_id: string;
|
|
name: string;
|
|
label: string;
|
|
uploader: Uploader;
|
|
content_type: string;
|
|
state: string;
|
|
size: number;
|
|
download_count: number;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
browser_download_url: string;
|
|
}
|
|
|
|
export interface Reactions {
|
|
url: string;
|
|
total_count: number;
|
|
'+1': number;
|
|
'-1': number;
|
|
laugh: number;
|
|
hooray: number;
|
|
confused: number;
|
|
heart: number;
|
|
rocket: number;
|
|
eyes: number;
|
|
}
|
|
|
|
export interface Release {
|
|
url: string;
|
|
assets_url: string;
|
|
upload_url: string;
|
|
html_url: string;
|
|
id: number;
|
|
author: Author;
|
|
node_id: string;
|
|
tag_name: string;
|
|
target_commitish: string;
|
|
name: string;
|
|
draft: boolean;
|
|
prerelease: boolean;
|
|
created_at: Date;
|
|
published_at: Date;
|
|
assets: Asset[];
|
|
tarball_url: string;
|
|
zipball_url: string;
|
|
body: string;
|
|
reactions: Reactions;
|
|
mentions_count: number;
|
|
}
|