@girs/gtksource-300 4.5.0 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/gtksource-300.d.ts +31 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for GtkSource-300 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
7
|
+
GJS TypeScript type definitions for GtkSource-300 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.7.0.
|
|
8
8
|
|
|
9
9
|
This package contains type declarations only. It ships no runtime code, so it adds
|
|
10
10
|
nothing to your program and works with any bundler or none at all.
|
package/gtksource-300.d.ts
CHANGED
|
@@ -2057,7 +2057,7 @@ export namespace GtkSource {
|
|
|
2057
2057
|
|
|
2058
2058
|
namespace CompletionItem {
|
|
2059
2059
|
// Signal signatures
|
|
2060
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
2060
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, CompletionProposal.SignalSignatures {}
|
|
2061
2061
|
|
|
2062
2062
|
// Constructor properties interface
|
|
2063
2063
|
interface ConstructorProps extends GObject.Object.ConstructorProps, CompletionProposal.ConstructorProps {}
|
|
@@ -8153,6 +8153,17 @@ export namespace GtkSource {
|
|
|
8153
8153
|
|
|
8154
8154
|
|
|
8155
8155
|
namespace CompletionProposal {
|
|
8156
|
+
// Signal signatures
|
|
8157
|
+
interface SignalSignatures {
|
|
8158
|
+
/**
|
|
8159
|
+
* Emitted when the proposal has changed. The completion popup
|
|
8160
|
+
* will react to this by updating the shown information.
|
|
8161
|
+
* @signal
|
|
8162
|
+
* @action
|
|
8163
|
+
* @run-last
|
|
8164
|
+
*/
|
|
8165
|
+
changed: () => void;
|
|
8166
|
+
}
|
|
8156
8167
|
/**
|
|
8157
8168
|
* Interface for implementing CompletionProposal.
|
|
8158
8169
|
* Contains only the virtual methods that need to be implemented.
|
|
@@ -8646,6 +8657,25 @@ export namespace GtkSource {
|
|
|
8646
8657
|
};
|
|
8647
8658
|
|
|
8648
8659
|
namespace UndoManager {
|
|
8660
|
+
// Signal signatures
|
|
8661
|
+
interface SignalSignatures {
|
|
8662
|
+
/**
|
|
8663
|
+
* Emitted when the ability to redo has changed.
|
|
8664
|
+
* @signal
|
|
8665
|
+
* @since 2.10
|
|
8666
|
+
* @action
|
|
8667
|
+
* @run-last
|
|
8668
|
+
*/
|
|
8669
|
+
"can-redo-changed": () => void;
|
|
8670
|
+
/**
|
|
8671
|
+
* Emitted when the ability to undo has changed.
|
|
8672
|
+
* @signal
|
|
8673
|
+
* @since 2.10
|
|
8674
|
+
* @action
|
|
8675
|
+
* @run-last
|
|
8676
|
+
*/
|
|
8677
|
+
"can-undo-changed": () => void;
|
|
8678
|
+
}
|
|
8649
8679
|
/**
|
|
8650
8680
|
* Interface for implementing UndoManager.
|
|
8651
8681
|
* Contains only the virtual methods that need to be implemented.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gtksource-300",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for GtkSource-300",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gtksource-300.js",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^4.
|
|
40
|
-
"@girs/gtk-3.0": "^4.
|
|
41
|
-
"@girs/xlib-2.0": "^4.
|
|
42
|
-
"@girs/gdk-3.0": "^4.
|
|
43
|
-
"@girs/cairo-1.0": "^4.
|
|
44
|
-
"@girs/gobject-2.0": "^4.
|
|
45
|
-
"@girs/glib-2.0": "^4.
|
|
46
|
-
"@girs/pango-1.0": "^4.
|
|
47
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
48
|
-
"@girs/freetype2-2.0": "^4.
|
|
49
|
-
"@girs/gio-2.0": "^4.
|
|
50
|
-
"@girs/gmodule-2.0": "^4.
|
|
51
|
-
"@girs/gdkpixbuf-2.0": "^4.
|
|
52
|
-
"@girs/atk-1.0": "^4.
|
|
39
|
+
"@girs/gjs": "^4.7.0",
|
|
40
|
+
"@girs/gtk-3.0": "^4.7.0",
|
|
41
|
+
"@girs/xlib-2.0": "^4.7.0",
|
|
42
|
+
"@girs/gdk-3.0": "^4.7.0",
|
|
43
|
+
"@girs/cairo-1.0": "^4.7.0",
|
|
44
|
+
"@girs/gobject-2.0": "^4.7.0",
|
|
45
|
+
"@girs/glib-2.0": "^4.7.0",
|
|
46
|
+
"@girs/pango-1.0": "^4.7.0",
|
|
47
|
+
"@girs/harfbuzz-0.0": "^4.7.0",
|
|
48
|
+
"@girs/freetype2-2.0": "^4.7.0",
|
|
49
|
+
"@girs/gio-2.0": "^4.7.0",
|
|
50
|
+
"@girs/gmodule-2.0": "^4.7.0",
|
|
51
|
+
"@girs/gdkpixbuf-2.0": "^4.7.0",
|
|
52
|
+
"@girs/atk-1.0": "^4.7.0" },
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"typescript": "*"
|
|
55
55
|
},
|