mirror of
https://github.com/xHyroM/website.git
synced 2024-11-13 02:58:07 +01:00
36 lines
715 B
TypeScript
36 lines
715 B
TypeScript
export interface Docs {
|
|
sidebar: SidebarItem[];
|
|
}
|
|
|
|
export interface SidebarItem {
|
|
text: string;
|
|
items: SidebarItem[] & {
|
|
link: string;
|
|
}[]
|
|
}
|
|
|
|
export const docs: Docs = {
|
|
sidebar: [
|
|
{
|
|
text: "Discord Experiments API",
|
|
items: [
|
|
{
|
|
text: "Introduction",
|
|
link: "/docs/discord-experiments-api/introduction",
|
|
},
|
|
{
|
|
text: "Experiments",
|
|
link: "/docs/discord-experiments-api/experiments",
|
|
},
|
|
{
|
|
text: "Eligible",
|
|
link: "/docs/discord-experiments-api/eligible",
|
|
},
|
|
{
|
|
text: "Stats",
|
|
link: "/docs/discord-experiments-api/stats",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|