https://github.com/eibens/lambda-ui
https://github.com/eibens/lambda-ui
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eibens/lambda-ui
- Owner: eibens
- Created: 2023-05-27T10:43:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-29T20:41:49.000Z (about 2 years ago)
- Last Synced: 2025-01-22T13:48:09.605Z (11 months ago)
- Language: TypeScript
- Size: 6.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Litdoc
Litdoc is a library for writing TypeScript documentation.
## Structure
The library is split into sub-libraries inside the `features` folder. Each
feature folder has a `mod.ts` that exports the public API of the feature. The
TypeScript modules in the feature folders can also be imported directly to save
on bundle size:
```ts
import { Paragraph } from "./features/text/paragraphs.tsx";
```