2024-07-30 22:40:25 +02:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright (c) 2022 Jozef Steinhübl
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
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: [
|
|
|
|
{
|
2024-03-12 22:36:09 +01:00
|
|
|
text: "DUX API",
|
2023-06-04 20:38:44 +02:00
|
|
|
items: [
|
|
|
|
{
|
|
|
|
text: "Introduction",
|
2024-03-12 22:36:09 +01:00
|
|
|
link: "/docs/dux/introduction",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Experiments",
|
2024-03-12 22:36:09 +01:00
|
|
|
link: "/docs/dux/experiments",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Eligible",
|
2024-03-12 22:36:09 +01:00
|
|
|
link: "/docs/dux/eligible",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Endpoints",
|
|
|
|
link: "/docs/dux/endpoints",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Stats",
|
2024-03-12 22:36:09 +01:00
|
|
|
link: "/docs/dux/stats",
|
2023-06-04 20:38:44 +02:00
|
|
|
},
|
|
|
|
],
|
2023-06-04 18:57:37 +02:00
|
|
|
},
|
2024-08-18 15:16:44 +02:00
|
|
|
{
|
|
|
|
text: "Distroid",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
text: "Introduction",
|
|
|
|
link: "/docs/distroid/introduction",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Current",
|
|
|
|
link: "/docs/distroid/current",
|
|
|
|
},
|
2024-08-18 18:07:35 +02:00
|
|
|
{
|
|
|
|
text: "Download",
|
|
|
|
link: "/docs/distroid/download",
|
|
|
|
},
|
2024-08-18 15:16:44 +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
|
|
|
],
|
|
|
|
};
|