mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
52 lines
979 B
TypeScript
52 lines
979 B
TypeScript
export interface Docs {
|
|
sidebar: Sidebar[];
|
|
}
|
|
|
|
export interface SidebarItem {
|
|
text: string;
|
|
link: string;
|
|
}
|
|
|
|
export interface Sidebar {
|
|
text: string;
|
|
items: SidebarItem[];
|
|
}
|
|
|
|
export const docs: Docs = {
|
|
sidebar: [
|
|
{
|
|
text: "Discord Tools API",
|
|
items: [
|
|
{
|
|
text: "Introduction",
|
|
link: "/docs/distools-api/introduction",
|
|
},
|
|
{
|
|
text: "Experiments",
|
|
link: "/docs/distools-api/experiments",
|
|
},
|
|
{
|
|
text: "Eligible",
|
|
link: "/docs/distools-api/eligible",
|
|
},
|
|
{
|
|
text: "Stats",
|
|
link: "/docs/distools-api/stats",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: "Peddler's Pocket",
|
|
items: [
|
|
{
|
|
text: "Introduction",
|
|
link: "/docs/peddlerspocket/introduction",
|
|
},
|
|
{
|
|
text: "Configuration",
|
|
link: "/docs/peddlerspocket/configuration",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|