2023-06-02 23:41:53 +02:00
|
|
|
export interface Docs {
|
2023-07-21 09:31:27 +02:00
|
|
|
sidebar: Sidebar[];
|
2023-06-02 23:41:53 +02:00
|
|
|
}
|
|
|
|
|
2023-06-04 18:57:37 +02:00
|
|
|
export interface SidebarItem {
|
2023-06-02 23:41:53 +02:00
|
|
|
text: string;
|
2023-07-21 09:31:27 +02:00
|
|
|
link: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Sidebar {
|
|
|
|
text: string;
|
|
|
|
items: SidebarItem[];
|
2023-06-02 23:41:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const docs: Docs = {
|
|
|
|
sidebar: [
|
|
|
|
{
|
2023-06-17 20:36:40 +02:00
|
|
|
text: "Discord Tools API",
|
2023-06-04 20:38:44 +02:00
|
|
|
items: [
|
|
|
|
{
|
|
|
|
text: "Introduction",
|
2023-06-17 20:36:40 +02:00
|
|
|
link: "/docs/distools-api/introduction",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Experiments",
|
2023-06-17 20:36:40 +02:00
|
|
|
link: "/docs/distools-api/experiments",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Eligible",
|
2023-06-17 20:36:40 +02:00
|
|
|
link: "/docs/distools-api/eligible",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Stats",
|
2023-06-17 20:36:40 +02:00
|
|
|
link: "/docs/distools-api/stats",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
],
|
2023-06-04 18:57:37 +02:00
|
|
|
},
|
2023-07-15 19:10:10 +02:00
|
|
|
{
|
|
|
|
text: "Peddler's Pocket",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
text: "Introduction",
|
|
|
|
link: "/docs/peddlerspocket/introduction",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Configuration",
|
|
|
|
link: "/docs/peddlerspocket/configuration",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2023-06-02 23:41:53 +02:00
|
|
|
],
|
|
|
|
};
|