-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathglobal.d.ts
More file actions
35 lines (31 loc) · 843 Bytes
/
global.d.ts
File metadata and controls
35 lines (31 loc) · 843 Bytes
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
import "@girs/adw-1/ambient";
import "@girs/gdk-4.0/ambient";
import "@girs/gjs/ambient";
import "@girs/gjs/dom";
import "@girs/gjs";
import "@girs/glib-2.0/ambient";
import "@girs/gnome-shell/ambient";
import "@girs/gobject-2.0/ambient";
import "@girs/gtk-4.0/ambient";
import "@girs/st-13/ambient";
import "@girs/shell-13/ambient";
import "@girs/clutter-13/ambient";
import "@girs/pango-1.0/ambient";
import "@girs/soup-3.0/ambient";
import "@girs/meta-13/ambient";
import "@girs/cogl-13/ambient";
import "@girs/gdkpixbuf-2.0/ambient";
declare global {
var global: any;
interface ImportMeta {
url: string;
}
interface String {
format(...args: unknown[]): string;
}
}
declare module "@girs/gobject-2.0" {
namespace GObject {
function type_from_name(name: string | null): GType | 0;
}
}