Skip to content

Commit 3027080

Browse files
committed
Add minimal mention of Wasm/TS support in docs
1 parent 7f67306 commit 3027080

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Djinni generator parses an interface definition file and generates:
2020
- Objective-C++ code to convert between C++ and Objective-C
2121
- Python and C code to convert between C++ and Python over CFFI
2222
- C++/CLI code to convert between C++ and C#
23+
- C++ code to convert between WebAssembly and TS/JS
2324

2425

2526
## Installation
@@ -86,3 +87,5 @@ The code in this repository is in large portions copied from [dropbox/djinni](ht
8687
- Jacob Potter
8788
- Iulia Tamas
8889
- Andrew Twyman
90+
91+
WebAssembly support is borrowed in large part from [snapchat/djinni](https://github.com/snapchat/djinni).

docs/cli-usage.md

+8
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,14 @@ djinni \
145145
| `--cppcli-namespace ...` | The namespace name to use for generated C++/CLI classes. |
146146
| `--cppcli-include-cpp-prefix <prefix>` | The prefix for `#include` of the main C++ header files from C++/CLI files. |
147147

148+
### WebAssembly/TS/JS
149+
150+
| Argument | Description |
151+
|----------------------------------------|----------------------------------------------------------------------------|
152+
| `--wasm-out <out-folder>` | WebAssembly bridge code output folder |
153+
| `--ts-out <out-folder>` | Path to the Typescript type definitions output folder |
154+
| `--ts-module <module>` | Name of the module for the Typescript types. `module.ts` by default. |
155+
148156

149157
### Yaml Generation
150158

0 commit comments

Comments
 (0)