mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-06 11:25:02 +00:00
* crawl files and create directory tree for sidebar * dropdown * Working on dropdown links and styling * setup header nav * Styles * DocumentNav sidebar done * wrap up header sidebar * setup top level nav * update root level data and fix link bug * doc links yaml * nav links for docs * remove character * prettier * fix build error * MDX style * Update src/components/UI/docs/DocsLinks.tsx Co-authored-by: Paul Wackerow <54227730+wackerow@users.noreply.github.com> * Abstract LinksList component into its own file * change requests * AccordionButton styles * AccordionButton styled * fix broken links * prettier * prettier * fix broken default code snippet * fix accordion spacing * fix gap at top of DocsNav lg * fix but of persistent header link * remove test content * setup Notes and prettier * rehype * Note component * Note font styling * convert old notes to use component * Breadcrumb cleanup and prettier * MDXComponents -> MDComponent and documentation Co-authored-by: Paul Wackerow <54227730+wackerow@users.noreply.github.com>
52 lines
908 B
TypeScript
52 lines
908 B
TypeScript
export interface LatestReleasesData {
|
|
versionNumber: string;
|
|
releaseName: string;
|
|
urls: {
|
|
LATEST_LINUX_BINARY_URL: string;
|
|
LATEST_MACOS_BINARY_URL: string;
|
|
LATEST_WINDOWS_BINARY_URL: string;
|
|
LATEST_SOURCES_URL: string;
|
|
RELEASE_NOTES_URL: string;
|
|
};
|
|
}
|
|
|
|
export interface ReleaseData {
|
|
release: {
|
|
label: string;
|
|
url: string;
|
|
};
|
|
commit: {
|
|
label: string;
|
|
url: string;
|
|
};
|
|
kind: string;
|
|
arch: string;
|
|
size: string;
|
|
published: string;
|
|
signature: {
|
|
label: string;
|
|
url: string;
|
|
};
|
|
checksum: string;
|
|
}
|
|
|
|
export interface ReleaseParams {
|
|
blobsList: string[];
|
|
isStableRelease: boolean;
|
|
}
|
|
|
|
export interface NavLink {
|
|
id: string;
|
|
to?: string;
|
|
items?: NavLink[];
|
|
}
|
|
|
|
export interface OpenPGPSignaturesData {
|
|
'build server': string;
|
|
'unique id': string;
|
|
'openpgp key': {
|
|
label: string;
|
|
url: string;
|
|
};
|
|
fingerprint: string;
|
|
}
|