Checkout the demo repository here!
This project converts GObject Introspection XML files into highly accurate TypeScript definition files (.d.ts)!
All packages are located under packages/
Core Packages:
- @gi.ts/lib - Type generation and inference
- @gi.ts/parser - GIR Parser
- @gi.ts/cli - CLI
Node-Specific Utilities:
- @gi.ts/node-loader - File loading
Other:
- @gi.ts/generator-html - An experimental generator for .html documentation
In the root folder:
-
yarn
(download dependencies) -
In
packages/parser
, runyarn build
-
In
packages/node-loader
, runyarn build
-
In
packages/lib
, runyarn build
-
In
packages/cli
, runyarn prepack
andyarn link
.
For HTML...
- In
packages/generator-html
, runyarn build
andyarn link
.
yarn link @gi.ts/cli
gi-ts config
(list potential packages)gi-ts generate [--all]
(generate files)
For HTML output...
yarn link @gi.ts/generator-html
gi-ts config
(list potential packages)gi-ts config --lock
(cache your local packages)gi-ts generate [--all]
(generate files)
In sample/docs.json
you can find an example of how to select which versions gi.ts
generates for a given library. Move this file to to your generation directory for gi.ts
to use it.
Complete documentation is available in the CLI documentation.
--inferGenerics
When infer generics is passed gi.ts attempts to add generic typing based on heuristics (primarily if a class or function is typed with GObject.Object
). If this is false all type conversions that would need to occur in C will likely also need to be made in TypeScript. This particularly impacts callback functions which offer an instance or self parameter.
--promisify
When promisification is enabled, GJS will add type definitions for any async functions it can identify. You still need to ensure Gio._promisify is called on the relevant functions, because it will type correctly regardless.
--out=./dir
The directory to store the output in.
--withDocs
Whether to include the documentation strings alongside the output. WARNING: the resulting type definitions will potentially then inherit the license of the original codebase
--format=dts|json
The JSON output format is meant to be used for documentation generators, dts
is the default and primary output format for gi.ts.
--noAdvancedVariants
Only impacts TypeScript output. For TypeScript outputs we "inject" a hand-written GLib.Variant definition which utilizes TypeScript's literal types to enforce Variant string signature typing.