-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgi.d.ts
41 lines (33 loc) · 860 Bytes
/
gi.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// <reference types="gjs-esm-types" />
declare module "gi://Gtk" {
import Gtk from "gi://Gtk?version=3.0";
export default Gtk;
}
declare module "gi://GLib" {
import GLib from "gi://GLib?version=2.0";
export default GLib;
}
declare module "gi://Gdk" {
import Gdk from "gi://Gdk?version=3.0";
export default Gdk;
}
declare module "gi://GdkPixbuf" {
import GdkPixbuf from "gi://GdkPixbuf?version=2.0";
export default GdkPixbuf;
}
declare module "gi://Gio" {
import Gio from "gi://Gio?version=2.0";
export default Gio;
}
declare module "gi://Pango" {
import Pango from "gi://Pango?version=1.0";
export default Pango;
}
declare module "gi://GObject" {
import GObject from "gi://GObject?version=2.0";
export default GObject;
}
declare module "gi://cairo" {
import cairo from "gi://cairo?version=1.0";
export default cairo;
}