Node.js TypeScript type definitions for Clutter-12, generated from library version 12.0.0


Keywords
Gir, TypeScript, types, GObject-Introspection, node, node-gtk, Clutter-12, dts, gjs, glib, gnome, gobject, gtk
License
MIT
Install
npm install @girs/node-clutter-12@12.0.0-3.2.0

Documentation

TS for GIR

TypeScript type definition generator for GObject introspection GIR files

ts-for-gir is a robust TypeScript type definitions generator that improves the development experience of GJS projects. It has been completely rewritten over time to provide a more complete and accurate TypeScript representation of the GObject introspection interfaces. With ts-for-gir, developers can now benefit from TypeScript's strong typing and improved code navigation, making it easier to build robust and powerful applications with GJS.

Getting Started

Install the latest LTS version of Node.js. We recommend using NVM for this purpose. After Node.js has been installed, ts-for-gir can be executed with the following command:

npx @ts-for-gir/cli --help

That's it, you can start generating your types 👩‍💻☕

To generate TypeScript definitions for Gtk 4.0:

npx @ts-for-gir/cli generate Gtk-4.0

For detailed CLI options and advanced usage, see the CLI documentation.

Debug Generation Issues: If you encounter type generation problems, enable the reporter and use the analyze command:

npx @ts-for-gir/cli generate Gtk-4.0 --reporter
npx @ts-for-gir/cli analyze -f ./ts-for-gir-report.json

Example Projects

The repository includes numerous example projects that demonstrate how to use the generated TypeScript definitions with various bundlers and libraries. These examples serve as great starting points for your own GJS applications.

Popular examples:

See the Examples directory for a complete list of examples with screenshots and detailed descriptions. For information on using the examples with different CLI options, refer to the CLI documentation.

NPM Packages

If you are only interested in the types and do not want to generate them yourself, you can use our pre-generated NPM packages. For example, if you want to develop a Gtk4 application with GJS, it is enough to install the corresponding NPM packages:

npm install @girs/gjs @girs/gtk-4.0 --save
import '@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 pre-generated NPM packages can be found on gjsify/types.

You want your or any other missing GObject introspection based library types to be published on NPM for every release? Then feel free to create an issue for it, we will be happy to include it.

Project Structure

ts-for-gir consists of several packages:

Further Information