TypeScript type definition generator for GObject introspection GIR files
ts-for-gir generates accurate TypeScript definitions from GObject Introspection for GJS projects β strong typing, IDE jump-to-definition, autocompletion across the whole GNOME stack.
π Project page on the gjsify website: gjsify.github.io/gjsify/projects/ts-for-gir β install paths, quickstart, generator usage, links to the related Patterns docs.
Browse the full TypeScript API Documentation for GLib, GTK, GStreamer, and more.
gjsify dlx @ts-for-gir/cli create my-app # no install, no Node.js
# or
npx @ts-for-gir/cli create my-app # via npmPick a template interactively, or pass --template <id>:
| Template | Best for |
|---|---|
types-gjsify |
Node-free GJS app β all dev scripts (install, build, run, format) routed through gjsify |
types-npm |
Single-package, types from @girs/* NPM, esbuild + node |
types-locally |
Generate types into ./@types/ (no @girs/* dep) |
types-workspace |
npm workspace with @girs/* as locally-generated workspace packages |
cd my-app && npm start # or `gjsify run start` for types-gjsifycurl -fsSL https://raw.githubusercontent.com/gjsify/ts-for-gir/main/install.js -o /tmp/install.js
gjs -m /tmp/install.js && rm /tmp/install.jsInstalls to ~/.local/bin/. Update later with ts-for-gir self-update. Powered by GJSify.
Alternative β if you already have the gjsify CLI installed: gjsify dlx @ts-for-gir/cli <args> (npx-style, no install) or gjsify install -g @ts-for-gir/cli (managed global).
npx @ts-for-gir/cli --help
# or globally:
npm install -g @ts-for-gir/clits-for-gir generate Gtk-4.0 # generate types for a single module
ts-for-gir generate Gtk-4.0 --reporter # with diagnostics
ts-for-gir analyze -f ./ts-for-gir-report.json # inspect the report
ts-for-gir --help # all commandsSee the CLI documentation for advanced options.
If you just want the types without generating them yourself:
npm install @girs/gjs @girs/gtk-4.0import "@girs/gjs";
import "@girs/gjs/dom";
import "@girs/gtk-4.0";
import Gtk from "gi://Gtk?version=4.0";
const button = new Gtk.Button();All packages are listed at gjsify/types. Missing a module? Open an issue.
GNOME Applications
- Audio Player β Play audio files
- Counters β Keep track of anything
- Ignition β Manage startup apps and scripts
- Learn 6502 β Learn programming on vintage game consoles
- Sound Recorder β A simple, modern sound recorder
- Sticky Notes β Pin notes to your desktop
- Weather β Show weather conditions and forecast
- K'uychi β Generate color palettes
GNOME Shell Extensions
- gTile β Tiling window management for GNOME Shell
- Copyous β Clipboard manager for GNOME Shell
- Rounded Window Corners β Add rounded corners to windows
Looking for a starting point? These example projects demonstrate how to use the TypeScript definitions with various bundlers:
- GTK 4 Template with Vite β Modern UI with Vite bundling
- GNOME TypeScript Template β A template using GTK, libadwaita, TypeScript, Flatpak, and Meson
More examples with screenshots and descriptions can be found in the Examples directory. For information on using the examples with different CLI options, refer to the CLI documentation.
ts-for-gir consists of several packages:
@ts-for-gir/cliβ Command-line interface for generating TypeScript definitions, documentation, and analyzing reports@gi.ts/parserβ Parser for GObject Introspection XML files@ts-for-gir/libβ Core library for processing GIR data@ts-for-gir/reporterβ Reporting system for problems and statistics with dependency injection@ts-for-gir/generator-typescriptβ TypeScript definition generator@ts-for-gir/generator-jsonβ TypeDoc JSON generator with GIR metadata enrichment@ts-for-gir/generator-html-docβ HTML documentation generator using TypeDoc@ts-for-gir/generator-baseβ Shared base class for generators@ts-for-gir/typedoc-themeβ Custom TypeDoc theme inspired by gi-docgen@ts-for-gir/gir-module-metadataβ Curated metadata (descriptions, logos, licenses) for GIR namespaces@ts-for-gir/templatesβ Template files for generated packages (tsconfig, typedoc config, ambient declarations)@ts-for-gir/tsconfigβ Shared TypeScript configuration@ts-for-gir/language-serverβ Language server for GIR files (experimental)
This repo contains Git submodules for pre-generated types and documentation:
types-dev(branchdev) β used during local development. Scripts write generated packages here.types-release(branchmain) β updated by the release workflow on tags.docs(branchmain) β generated HTML documentation, deployed to gjsify.github.io/docs.
Useful scripts:
gjsify run build:types # regenerate into ./types-dev
gjsify run build:types:release # regenerate into ./types-release
gjsify run build:doc # build HTML docs into ./docs- TypeScript API Documentation
- Examples
- CLI Documentation
- gjsify/types β pre-generated NPM packages
- gjsify/gnome-shell β hand-written Shell Extension types