Skip to content

Commit

Permalink
Added docs, methods now work as expected, fixed imports and exports
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Feb 28, 2022
1 parent b6ba019 commit 0837a18
Show file tree
Hide file tree
Showing 97 changed files with 3,998 additions and 129 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,4 @@ dist

# TernJS port file
.tern-port
test.js
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +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.
22 changes: 22 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
:root {
--light-code-background: #F5F5F5;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-code-background);
} }

body.light {
--code-background: var(--light-code-background);
}

body.dark {
--code-background: var(--dark-code-background);
}

pre, code { background: var(--code-background); }
Loading

0 comments on commit 0837a18

Please sign in to comment.