mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
31 lines
607 B
TypeScript
31 lines
607 B
TypeScript
export interface Docs {
|
|
sidebar: Sidebar[];
|
|
}
|
|
|
|
export interface Sidebar {
|
|
text: string;
|
|
header?: boolean;
|
|
link?: string;
|
|
}
|
|
|
|
export const docs: Docs = {
|
|
sidebar: [
|
|
{ text: "Discord Experiments API", header: true },
|
|
{
|
|
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",
|
|
}
|
|
],
|
|
};
|