@girs/gegl-0.4 0.4.41-3.0.4 → 0.4.45-3.2.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/gegl-0.4.d.cts +12 -2
- package/gegl-0.4.d.ts +12 -2
- package/package.json +8 -14
- package/{tsconfig.doc.json → tsconfig.json} +2 -0
- package/typedoc.json +7 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.
|
|
8
|
+
GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.45 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.0.
|
|
9
9
|
|
|
10
10
|
GEGL (Generic Graphics Library) is a data flow based image processing framework, providing floating point processing and non-destructive image processing capabilities to GNU Image Manipulation Program and other projects (imgflo, GNOME Photos, gcut, iconographer, …)
|
|
11
11
|
|
package/gegl-0.4.d.cts
CHANGED
|
@@ -2183,6 +2183,16 @@ export interface Node {
|
|
|
2183
2183
|
* @param abyss_policy
|
|
2184
2184
|
*/
|
|
2185
2185
|
blit_buffer(buffer: Buffer | null, roi: Rectangle | null, level: number, abyss_policy: AbyssPolicy): void
|
|
2186
|
+
/**
|
|
2187
|
+
* Makes a connection between the pads of two nodes, one pad should
|
|
2188
|
+
* be a source pad the other a sink pad, order does not matter.
|
|
2189
|
+
*
|
|
2190
|
+
* Returns TRUE if the connection was successfully made.
|
|
2191
|
+
* @param a_pad_name and the pad of the node we want connected.
|
|
2192
|
+
* @param b another node
|
|
2193
|
+
* @param b_pad_name and its pad to be connected.
|
|
2194
|
+
*/
|
|
2195
|
+
connect(a_pad_name: string | null, b: Node, b_pad_name: string | null): boolean
|
|
2186
2196
|
/**
|
|
2187
2197
|
* Makes a connection between the pads of two nodes.
|
|
2188
2198
|
*
|
|
@@ -2300,8 +2310,7 @@ export interface Node {
|
|
|
2300
2310
|
get_property(property_name: string | null, value: any): void
|
|
2301
2311
|
is_graph(): boolean
|
|
2302
2312
|
/**
|
|
2303
|
-
*
|
|
2304
|
-
* pad of `sink`.
|
|
2313
|
+
* This is equivalent to gegl_node_connect (source, "output", sink, "input");
|
|
2305
2314
|
* @param sink the consumer of data.
|
|
2306
2315
|
*/
|
|
2307
2316
|
link(sink: Node): void
|
|
@@ -2362,6 +2371,7 @@ export interface Node {
|
|
|
2362
2371
|
* @returns the child.
|
|
2363
2372
|
*/
|
|
2364
2373
|
remove_child(child: Node): Node
|
|
2374
|
+
set_enum_as_string(key: string | null, value: string | null): void
|
|
2365
2375
|
set_passthrough(passthrough: boolean): void
|
|
2366
2376
|
/**
|
|
2367
2377
|
* This is mainly included for language bindings. Using #gegl_node_set is
|
package/gegl-0.4.d.ts
CHANGED
|
@@ -2185,6 +2185,16 @@ interface Node {
|
|
|
2185
2185
|
* @param abyss_policy
|
|
2186
2186
|
*/
|
|
2187
2187
|
blit_buffer(buffer: Buffer | null, roi: Rectangle | null, level: number, abyss_policy: AbyssPolicy): void
|
|
2188
|
+
/**
|
|
2189
|
+
* Makes a connection between the pads of two nodes, one pad should
|
|
2190
|
+
* be a source pad the other a sink pad, order does not matter.
|
|
2191
|
+
*
|
|
2192
|
+
* Returns TRUE if the connection was successfully made.
|
|
2193
|
+
* @param a_pad_name and the pad of the node we want connected.
|
|
2194
|
+
* @param b another node
|
|
2195
|
+
* @param b_pad_name and its pad to be connected.
|
|
2196
|
+
*/
|
|
2197
|
+
connect(a_pad_name: string | null, b: Node, b_pad_name: string | null): boolean
|
|
2188
2198
|
/**
|
|
2189
2199
|
* Makes a connection between the pads of two nodes.
|
|
2190
2200
|
*
|
|
@@ -2302,8 +2312,7 @@ interface Node {
|
|
|
2302
2312
|
get_property(property_name: string | null, value: any): void
|
|
2303
2313
|
is_graph(): boolean
|
|
2304
2314
|
/**
|
|
2305
|
-
*
|
|
2306
|
-
* pad of `sink`.
|
|
2315
|
+
* This is equivalent to gegl_node_connect (source, "output", sink, "input");
|
|
2307
2316
|
* @param sink the consumer of data.
|
|
2308
2317
|
*/
|
|
2309
2318
|
link(sink: Node): void
|
|
@@ -2364,6 +2373,7 @@ interface Node {
|
|
|
2364
2373
|
* @returns the child.
|
|
2365
2374
|
*/
|
|
2366
2375
|
remove_child(child: Node): Node
|
|
2376
|
+
set_enum_as_string(key: string | null, value: string | null): void
|
|
2367
2377
|
set_passthrough(passthrough: boolean): void
|
|
2368
2378
|
/**
|
|
2369
2379
|
* This is mainly included for language bindings. Using #gegl_node_set is
|
package/package.json
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gegl-0.4",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.
|
|
3
|
+
"version": "0.4.45-3.2.0",
|
|
4
|
+
"description": "GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.45",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gegl-0.4.js",
|
|
7
7
|
"main": "gegl-0.4.js",
|
|
8
|
-
"typedoc": {
|
|
9
|
-
"entryPoint": "./gegl-0.4.d.ts",
|
|
10
|
-
"readmeFile": "./README.md",
|
|
11
|
-
"displayName": "Gegl-0.4",
|
|
12
|
-
"tsconfig": "./tsconfig.doc.json"
|
|
13
|
-
},
|
|
14
8
|
"exports": {
|
|
15
9
|
"./ambient": "./gegl-0.4-ambient.d.ts",
|
|
16
10
|
"./import": "./gegl-0.4-import.d.ts",
|
|
@@ -27,14 +21,14 @@
|
|
|
27
21
|
},
|
|
28
22
|
"scripts": {
|
|
29
23
|
"test": "yarn test:esm && yarn test:cjs",
|
|
30
|
-
"test:esm": "tsc --noEmit gegl-0.4.d.ts",
|
|
31
|
-
"test:cjs": "tsc --noEmit gegl-0.4.d.cts"
|
|
24
|
+
"test:esm": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gegl-0.4.d.ts",
|
|
25
|
+
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gegl-0.4.d.cts"
|
|
32
26
|
},
|
|
33
27
|
"dependencies": {
|
|
34
|
-
"@girs/babl-0.1": "^0.1.
|
|
35
|
-
"@girs/gjs": "^3.0
|
|
36
|
-
"@girs/glib-2.0": "^2.76.1-3.0
|
|
37
|
-
"@girs/gobject-2.0": "^2.76.1-3.0
|
|
28
|
+
"@girs/babl-0.1": "^0.1.107-3.2.0",
|
|
29
|
+
"@girs/gjs": "^3.2.0",
|
|
30
|
+
"@girs/glib-2.0": "^2.76.1-3.2.0",
|
|
31
|
+
"@girs/gobject-2.0": "^2.76.1-3.2.0"
|
|
38
32
|
},
|
|
39
33
|
"devDependencies": {
|
|
40
34
|
"typescript": "*"
|