Skip to content

Commit f476a1d

Browse files
committed
messages
1 parent d6bcbe6 commit f476a1d

File tree

43 files changed

+6779
-147
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+6779
-147
lines changed

docs.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
const TypeDoc = require('typedoc');
2+
3+
async function main() {
4+
const app = new TypeDoc.Application();
5+
6+
// If you want TypeDoc to load tsconfig.json / typedoc.json files
7+
app.options.addReader(new TypeDoc.TSConfigReader());
8+
app.options.addReader(new TypeDoc.TypeDocReader());
9+
10+
app.bootstrap({
11+
entryPoints: ["src/api/*"],
12+
entryPointStrategy: 'expand'
13+
});
14+
15+
const project = app.convert();
16+
17+
if (project) {
18+
// Project may not have converted correctly
19+
const outputDir = "docs";
20+
21+
// Rendered docs
22+
await app.generateDocs(project, outputDir);
23+
// Alternatively generate JSON output
24+
//await app.generateJson(project, outputDir + "/documentation.json");
25+
}
26+
}
27+
28+
main().catch(console.error);

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/assets/highlight.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
:root {
2+
--light-hl-0: #000000;
3+
--dark-hl-0: #D4D4D4;
4+
--light-hl-1: #0451A5;
5+
--dark-hl-1: #9CDCFE;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-code-background: #FFFFFF;
9+
--dark-code-background: #1E1E1E;
10+
}
11+
12+
@media (prefers-color-scheme: light) { :root {
13+
--hl-0: var(--light-hl-0);
14+
--hl-1: var(--light-hl-1);
15+
--hl-2: var(--light-hl-2);
16+
--code-background: var(--light-code-background);
17+
} }
18+
19+
@media (prefers-color-scheme: dark) { :root {
20+
--hl-0: var(--dark-hl-0);
21+
--hl-1: var(--dark-hl-1);
22+
--hl-2: var(--dark-hl-2);
23+
--code-background: var(--dark-code-background);
24+
} }
25+
26+
:root[data-theme='light'] {
27+
--hl-0: var(--light-hl-0);
28+
--hl-1: var(--light-hl-1);
29+
--hl-2: var(--light-hl-2);
30+
--code-background: var(--light-code-background);
31+
}
32+
33+
:root[data-theme='dark'] {
34+
--hl-0: var(--dark-hl-0);
35+
--hl-1: var(--dark-hl-1);
36+
--hl-2: var(--dark-hl-2);
37+
--code-background: var(--dark-code-background);
38+
}
39+
40+
.hl-0 { color: var(--hl-0); }
41+
.hl-1 { color: var(--hl-1); }
42+
.hl-2 { color: var(--hl-2); }
43+
pre, code { background: var(--code-background); }

docs/assets/search.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)