2023-06-02 23:41:53 +02:00
|
|
|
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",
|
|
|
|
},
|
2023-06-03 18:32:47 +02:00
|
|
|
{
|
|
|
|
text: "Stats",
|
|
|
|
link: "/docs/discord-experiments-api/stats",
|
|
|
|
}
|
2023-06-02 23:41:53 +02:00
|
|
|
],
|
|
|
|
};
|