@girs/gsf-1 1.0.0-3.2.4 → 1.0.0-3.2.6
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 +14 -1
- package/gsf-1-ambient.d.ts +0 -1
- package/gsf-1-import.d.ts +0 -1
- package/gsf-1.d.cts +92 -0
- package/gsf-1.d.ts +92 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gsf-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Gsf-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
@@ -81,6 +81,19 @@ Now you have also type support for this, too:
|
|
|
81
81
|
const Gsf = imports.gi.Gsf;
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
+
|
|
85
|
+
### ESM vs. CommonJS
|
|
86
|
+
|
|
87
|
+
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
|
|
88
|
+
|
|
89
|
+
In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
|
|
90
|
+
|
|
91
|
+
On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
|
|
92
|
+
|
|
93
|
+
This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
|
|
94
|
+
|
|
95
|
+
Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
|
|
96
|
+
|
|
84
97
|
### Bundle
|
|
85
98
|
|
|
86
99
|
Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
|
package/gsf-1-ambient.d.ts
CHANGED
package/gsf-1-import.d.ts
CHANGED
package/gsf-1.d.cts
CHANGED
|
@@ -1295,6 +1295,7 @@ export module InfileZip {
|
|
|
1295
1295
|
|
|
1296
1296
|
internal_parent?: InfileZip | null
|
|
1297
1297
|
source?: Input | null
|
|
1298
|
+
internalParent?: InfileZip | null
|
|
1298
1299
|
}
|
|
1299
1300
|
|
|
1300
1301
|
}
|
|
@@ -1307,7 +1308,12 @@ export interface InfileZip {
|
|
|
1307
1308
|
* Controls the level of compression used for new members.
|
|
1308
1309
|
*/
|
|
1309
1310
|
readonly compression_level: number
|
|
1311
|
+
/**
|
|
1312
|
+
* Controls the level of compression used for new members.
|
|
1313
|
+
*/
|
|
1314
|
+
readonly compressionLevel: number
|
|
1310
1315
|
readonly internal_parent: InfileZip
|
|
1316
|
+
readonly internalParent: InfileZip
|
|
1311
1317
|
readonly source: Input
|
|
1312
1318
|
readonly zip64: boolean
|
|
1313
1319
|
|
|
@@ -1578,6 +1584,7 @@ export module InputGZip {
|
|
|
1578
1584
|
raw?: boolean | null
|
|
1579
1585
|
source?: Input | null
|
|
1580
1586
|
uncompressed_size?: number | null
|
|
1587
|
+
uncompressedSize?: number | null
|
|
1581
1588
|
}
|
|
1582
1589
|
|
|
1583
1590
|
}
|
|
@@ -1589,6 +1596,7 @@ export interface InputGZip {
|
|
|
1589
1596
|
readonly raw: boolean
|
|
1590
1597
|
readonly source: Input
|
|
1591
1598
|
readonly uncompressed_size: number
|
|
1599
|
+
readonly uncompressedSize: number
|
|
1592
1600
|
|
|
1593
1601
|
// Class property signals of Gsf-1.Gsf.InputGZip
|
|
1594
1602
|
|
|
@@ -1704,6 +1712,7 @@ export module InputHTTP {
|
|
|
1704
1712
|
|
|
1705
1713
|
content_type?: string | null
|
|
1706
1714
|
url?: string | null
|
|
1715
|
+
contentType?: string | null
|
|
1707
1716
|
}
|
|
1708
1717
|
|
|
1709
1718
|
}
|
|
@@ -1713,6 +1722,7 @@ export interface InputHTTP {
|
|
|
1713
1722
|
// Own properties of Gsf-1.Gsf.InputHTTP
|
|
1714
1723
|
|
|
1715
1724
|
readonly content_type: string | null
|
|
1725
|
+
readonly contentType: string | null
|
|
1716
1726
|
readonly url: string | null
|
|
1717
1727
|
|
|
1718
1728
|
// Owm methods of Gsf-1.Gsf.InputHTTP
|
|
@@ -2026,6 +2036,7 @@ export module ODFOut {
|
|
|
2026
2036
|
// Own constructor properties of Gsf-1.Gsf.ODFOut
|
|
2027
2037
|
|
|
2028
2038
|
odf_version?: number | null
|
|
2039
|
+
odfVersion?: number | null
|
|
2029
2040
|
}
|
|
2030
2041
|
|
|
2031
2042
|
}
|
|
@@ -2035,6 +2046,7 @@ export interface ODFOut {
|
|
|
2035
2046
|
// Own properties of Gsf-1.Gsf.ODFOut
|
|
2036
2047
|
|
|
2037
2048
|
readonly odf_version: number
|
|
2049
|
+
readonly odfVersion: number
|
|
2038
2050
|
|
|
2039
2051
|
// Own fields of Gsf-1.Gsf.ODFOut
|
|
2040
2052
|
|
|
@@ -2107,6 +2119,9 @@ export interface Outfile {
|
|
|
2107
2119
|
|
|
2108
2120
|
// Class property signals of Gsf-1.Gsf.Outfile
|
|
2109
2121
|
|
|
2122
|
+
connect(sigName: "notify::is-closed", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2123
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2124
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2110
2125
|
connect(sigName: "notify::modtime", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2111
2126
|
connect_after(sigName: "notify::modtime", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2112
2127
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2150,6 +2165,8 @@ export module OutfileMSOle {
|
|
|
2150
2165
|
big_block_size?: number | null
|
|
2151
2166
|
sink?: Output | null
|
|
2152
2167
|
small_block_size?: number | null
|
|
2168
|
+
bigBlockSize?: number | null
|
|
2169
|
+
smallBlockSize?: number | null
|
|
2153
2170
|
}
|
|
2154
2171
|
|
|
2155
2172
|
}
|
|
@@ -2159,8 +2176,10 @@ export interface OutfileMSOle {
|
|
|
2159
2176
|
// Own properties of Gsf-1.Gsf.OutfileMSOle
|
|
2160
2177
|
|
|
2161
2178
|
readonly big_block_size: number
|
|
2179
|
+
readonly bigBlockSize: number
|
|
2162
2180
|
readonly sink: Output
|
|
2163
2181
|
readonly small_block_size: number
|
|
2182
|
+
readonly smallBlockSize: number
|
|
2164
2183
|
|
|
2165
2184
|
// Owm methods of Gsf-1.Gsf.OutfileMSOle
|
|
2166
2185
|
|
|
@@ -2182,6 +2201,9 @@ export interface OutfileMSOle {
|
|
|
2182
2201
|
connect(sigName: "notify::small-block-size", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2183
2202
|
connect_after(sigName: "notify::small-block-size", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2184
2203
|
emit(sigName: "notify::small-block-size", ...args: any[]): void
|
|
2204
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2205
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2206
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2185
2207
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2186
2208
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2187
2209
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2253,6 +2275,8 @@ export module OutfileOpenPkg {
|
|
|
2253
2275
|
content_type?: string | null
|
|
2254
2276
|
is_dir?: boolean | null
|
|
2255
2277
|
sink?: Outfile | null
|
|
2278
|
+
contentType?: string | null
|
|
2279
|
+
isDir?: boolean | null
|
|
2256
2280
|
}
|
|
2257
2281
|
|
|
2258
2282
|
}
|
|
@@ -2262,7 +2286,9 @@ export interface OutfileOpenPkg {
|
|
|
2262
2286
|
// Own properties of Gsf-1.Gsf.OutfileOpenPkg
|
|
2263
2287
|
|
|
2264
2288
|
readonly content_type: string | null
|
|
2289
|
+
readonly contentType: string | null
|
|
2265
2290
|
readonly is_dir: boolean
|
|
2291
|
+
readonly isDir: boolean
|
|
2266
2292
|
readonly sink: Outfile
|
|
2267
2293
|
|
|
2268
2294
|
// Owm methods of Gsf-1.Gsf.OutfileOpenPkg
|
|
@@ -2299,6 +2325,9 @@ export interface OutfileOpenPkg {
|
|
|
2299
2325
|
connect(sigName: "notify::sink", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2300
2326
|
connect_after(sigName: "notify::sink", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2301
2327
|
emit(sigName: "notify::sink", ...args: any[]): void
|
|
2328
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2329
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2330
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2302
2331
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2303
2332
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2304
2333
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2354,6 +2383,9 @@ export interface OutfileStdio {
|
|
|
2354
2383
|
|
|
2355
2384
|
// Class property signals of Gsf-1.Gsf.OutfileStdio
|
|
2356
2385
|
|
|
2386
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2387
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2388
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2357
2389
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2358
2390
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2359
2391
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2397,6 +2429,9 @@ export module OutfileZip {
|
|
|
2397
2429
|
entry_name?: string | null
|
|
2398
2430
|
sink?: Output | null
|
|
2399
2431
|
zip64?: number | null
|
|
2432
|
+
compressionLevel?: number | null
|
|
2433
|
+
deflateLevel?: number | null
|
|
2434
|
+
entryName?: string | null
|
|
2400
2435
|
}
|
|
2401
2436
|
|
|
2402
2437
|
}
|
|
@@ -2406,8 +2441,11 @@ export interface OutfileZip {
|
|
|
2406
2441
|
// Own properties of Gsf-1.Gsf.OutfileZip
|
|
2407
2442
|
|
|
2408
2443
|
readonly compression_level: number
|
|
2444
|
+
readonly compressionLevel: number
|
|
2409
2445
|
readonly deflate_level: number
|
|
2446
|
+
readonly deflateLevel: number
|
|
2410
2447
|
readonly entry_name: string | null
|
|
2448
|
+
readonly entryName: string | null
|
|
2411
2449
|
readonly sink: Output
|
|
2412
2450
|
readonly zip64: number
|
|
2413
2451
|
|
|
@@ -2432,6 +2470,9 @@ export interface OutfileZip {
|
|
|
2432
2470
|
connect(sigName: "notify::zip64", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2433
2471
|
connect_after(sigName: "notify::zip64", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2434
2472
|
emit(sigName: "notify::zip64", ...args: any[]): void
|
|
2473
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2474
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2475
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2435
2476
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2436
2477
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2437
2478
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2508,6 +2549,10 @@ export interface Output {
|
|
|
2508
2549
|
|
|
2509
2550
|
// Own properties of Gsf-1.Gsf.Output
|
|
2510
2551
|
|
|
2552
|
+
/**
|
|
2553
|
+
* %TRUE if the output has been closed.
|
|
2554
|
+
*/
|
|
2555
|
+
readonly isClosed: boolean
|
|
2511
2556
|
/**
|
|
2512
2557
|
* The time the output was last updated. This must be set on object
|
|
2513
2558
|
* construction and represents the timestamp to put on the resulting
|
|
@@ -2631,6 +2676,9 @@ export interface Output {
|
|
|
2631
2676
|
|
|
2632
2677
|
// Class property signals of Gsf-1.Gsf.Output
|
|
2633
2678
|
|
|
2679
|
+
connect(sigName: "notify::is-closed", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2680
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2681
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2634
2682
|
connect(sigName: "notify::modtime", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2635
2683
|
connect_after(sigName: "notify::modtime", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2636
2684
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2679,6 +2727,9 @@ export interface OutputBzip {
|
|
|
2679
2727
|
|
|
2680
2728
|
// Class property signals of Gsf-1.Gsf.OutputBzip
|
|
2681
2729
|
|
|
2730
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2731
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2732
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2682
2733
|
connect(sigName: "notify::modtime", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2683
2734
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2684
2735
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2736,6 +2787,9 @@ export module OutputCsv {
|
|
|
2736
2787
|
quoting_triggers?: string | null
|
|
2737
2788
|
separator?: string | null
|
|
2738
2789
|
sink?: Output | null
|
|
2790
|
+
quotingMode?: OutputCsvQuotingMode | null
|
|
2791
|
+
quotingOnWhitespace?: boolean | null
|
|
2792
|
+
quotingTriggers?: string | null
|
|
2739
2793
|
}
|
|
2740
2794
|
|
|
2741
2795
|
}
|
|
@@ -2744,7 +2798,10 @@ export interface OutputCsv {
|
|
|
2744
2798
|
|
|
2745
2799
|
// Own properties of Gsf-1.Gsf.OutputCsv
|
|
2746
2800
|
|
|
2801
|
+
quotingMode: OutputCsvQuotingMode
|
|
2747
2802
|
quoting_on_whitespace: boolean
|
|
2803
|
+
quotingOnWhitespace: boolean
|
|
2804
|
+
quotingTriggers: string | null
|
|
2748
2805
|
|
|
2749
2806
|
// Own fields of Gsf-1.Gsf.OutputCsv
|
|
2750
2807
|
|
|
@@ -2768,9 +2825,18 @@ export interface OutputCsv {
|
|
|
2768
2825
|
|
|
2769
2826
|
// Class property signals of Gsf-1.Gsf.OutputCsv
|
|
2770
2827
|
|
|
2828
|
+
connect(sigName: "notify::quoting-mode", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2829
|
+
connect_after(sigName: "notify::quoting-mode", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2830
|
+
emit(sigName: "notify::quoting-mode", ...args: any[]): void
|
|
2771
2831
|
connect(sigName: "notify::quoting-on-whitespace", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2772
2832
|
connect_after(sigName: "notify::quoting-on-whitespace", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2773
2833
|
emit(sigName: "notify::quoting-on-whitespace", ...args: any[]): void
|
|
2834
|
+
connect(sigName: "notify::quoting-triggers", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2835
|
+
connect_after(sigName: "notify::quoting-triggers", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2836
|
+
emit(sigName: "notify::quoting-triggers", ...args: any[]): void
|
|
2837
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2838
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2839
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2774
2840
|
connect(sigName: "notify::modtime", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2775
2841
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2776
2842
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2810,6 +2876,7 @@ export module OutputGZip {
|
|
|
2810
2876
|
deflate_level?: number | null
|
|
2811
2877
|
raw?: boolean | null
|
|
2812
2878
|
sink?: Output | null
|
|
2879
|
+
deflateLevel?: number | null
|
|
2813
2880
|
}
|
|
2814
2881
|
|
|
2815
2882
|
}
|
|
@@ -2819,6 +2886,7 @@ export interface OutputGZip {
|
|
|
2819
2886
|
// Own properties of Gsf-1.Gsf.OutputGZip
|
|
2820
2887
|
|
|
2821
2888
|
deflate_level: number
|
|
2889
|
+
deflateLevel: number
|
|
2822
2890
|
readonly raw: boolean
|
|
2823
2891
|
readonly sink: Output
|
|
2824
2892
|
|
|
@@ -2833,6 +2901,9 @@ export interface OutputGZip {
|
|
|
2833
2901
|
connect(sigName: "notify::sink", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2834
2902
|
connect_after(sigName: "notify::sink", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2835
2903
|
emit(sigName: "notify::sink", ...args: any[]): void
|
|
2904
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2905
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2906
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2836
2907
|
connect(sigName: "notify::modtime", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2837
2908
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2838
2909
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2888,6 +2959,9 @@ export interface OutputGio {
|
|
|
2888
2959
|
|
|
2889
2960
|
// Class property signals of Gsf-1.Gsf.OutputGio
|
|
2890
2961
|
|
|
2962
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2963
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2964
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2891
2965
|
connect(sigName: "notify::modtime", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2892
2966
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2893
2967
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2933,6 +3007,9 @@ export interface OutputIOChannel {
|
|
|
2933
3007
|
|
|
2934
3008
|
// Class property signals of Gsf-1.Gsf.OutputIOChannel
|
|
2935
3009
|
|
|
3010
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
3011
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
3012
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2936
3013
|
connect(sigName: "notify::modtime", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
2937
3014
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
2938
3015
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2980,6 +3057,8 @@ export module OutputIconv {
|
|
|
2980
3057
|
input_charset?: string | null
|
|
2981
3058
|
output_charset?: string | null
|
|
2982
3059
|
sink?: Output | null
|
|
3060
|
+
inputCharset?: string | null
|
|
3061
|
+
outputCharset?: string | null
|
|
2983
3062
|
}
|
|
2984
3063
|
|
|
2985
3064
|
}
|
|
@@ -2995,7 +3074,9 @@ export interface OutputIconv {
|
|
|
2995
3074
|
*/
|
|
2996
3075
|
fallback: string | null
|
|
2997
3076
|
readonly input_charset: string | null
|
|
3077
|
+
readonly inputCharset: string | null
|
|
2998
3078
|
readonly output_charset: string | null
|
|
3079
|
+
readonly outputCharset: string | null
|
|
2999
3080
|
readonly sink: Output
|
|
3000
3081
|
|
|
3001
3082
|
// Class property signals of Gsf-1.Gsf.OutputIconv
|
|
@@ -3012,6 +3093,9 @@ export interface OutputIconv {
|
|
|
3012
3093
|
connect(sigName: "notify::sink", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3013
3094
|
connect_after(sigName: "notify::sink", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3014
3095
|
emit(sigName: "notify::sink", ...args: any[]): void
|
|
3096
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3097
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3098
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
3015
3099
|
connect(sigName: "notify::modtime", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3016
3100
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3017
3101
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -3076,6 +3160,9 @@ export interface OutputMemory {
|
|
|
3076
3160
|
|
|
3077
3161
|
// Class property signals of Gsf-1.Gsf.OutputMemory
|
|
3078
3162
|
|
|
3163
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3164
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3165
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
3079
3166
|
connect(sigName: "notify::modtime", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3080
3167
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3081
3168
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -3119,6 +3206,9 @@ export interface OutputStdio {
|
|
|
3119
3206
|
|
|
3120
3207
|
// Class property signals of Gsf-1.Gsf.OutputStdio
|
|
3121
3208
|
|
|
3209
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3210
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3211
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
3122
3212
|
connect(sigName: "notify::modtime", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3123
3213
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3124
3214
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -3263,6 +3353,7 @@ export module XMLOut {
|
|
|
3263
3353
|
|
|
3264
3354
|
pretty_print?: boolean | null
|
|
3265
3355
|
sink?: Output | null
|
|
3356
|
+
prettyPrint?: boolean | null
|
|
3266
3357
|
}
|
|
3267
3358
|
|
|
3268
3359
|
}
|
|
@@ -3272,6 +3363,7 @@ export interface XMLOut {
|
|
|
3272
3363
|
// Own properties of Gsf-1.Gsf.XMLOut
|
|
3273
3364
|
|
|
3274
3365
|
pretty_print: boolean
|
|
3366
|
+
prettyPrint: boolean
|
|
3275
3367
|
readonly sink: Output
|
|
3276
3368
|
|
|
3277
3369
|
// Own fields of Gsf-1.Gsf.XMLOut
|
package/gsf-1.d.ts
CHANGED
|
@@ -1297,6 +1297,7 @@ module InfileZip {
|
|
|
1297
1297
|
|
|
1298
1298
|
internal_parent?: InfileZip | null
|
|
1299
1299
|
source?: Input | null
|
|
1300
|
+
internalParent?: InfileZip | null
|
|
1300
1301
|
}
|
|
1301
1302
|
|
|
1302
1303
|
}
|
|
@@ -1309,7 +1310,12 @@ interface InfileZip {
|
|
|
1309
1310
|
* Controls the level of compression used for new members.
|
|
1310
1311
|
*/
|
|
1311
1312
|
readonly compression_level: number
|
|
1313
|
+
/**
|
|
1314
|
+
* Controls the level of compression used for new members.
|
|
1315
|
+
*/
|
|
1316
|
+
readonly compressionLevel: number
|
|
1312
1317
|
readonly internal_parent: InfileZip
|
|
1318
|
+
readonly internalParent: InfileZip
|
|
1313
1319
|
readonly source: Input
|
|
1314
1320
|
readonly zip64: boolean
|
|
1315
1321
|
|
|
@@ -1580,6 +1586,7 @@ module InputGZip {
|
|
|
1580
1586
|
raw?: boolean | null
|
|
1581
1587
|
source?: Input | null
|
|
1582
1588
|
uncompressed_size?: number | null
|
|
1589
|
+
uncompressedSize?: number | null
|
|
1583
1590
|
}
|
|
1584
1591
|
|
|
1585
1592
|
}
|
|
@@ -1591,6 +1598,7 @@ interface InputGZip {
|
|
|
1591
1598
|
readonly raw: boolean
|
|
1592
1599
|
readonly source: Input
|
|
1593
1600
|
readonly uncompressed_size: number
|
|
1601
|
+
readonly uncompressedSize: number
|
|
1594
1602
|
|
|
1595
1603
|
// Class property signals of Gsf-1.Gsf.InputGZip
|
|
1596
1604
|
|
|
@@ -1706,6 +1714,7 @@ module InputHTTP {
|
|
|
1706
1714
|
|
|
1707
1715
|
content_type?: string | null
|
|
1708
1716
|
url?: string | null
|
|
1717
|
+
contentType?: string | null
|
|
1709
1718
|
}
|
|
1710
1719
|
|
|
1711
1720
|
}
|
|
@@ -1715,6 +1724,7 @@ interface InputHTTP {
|
|
|
1715
1724
|
// Own properties of Gsf-1.Gsf.InputHTTP
|
|
1716
1725
|
|
|
1717
1726
|
readonly content_type: string | null
|
|
1727
|
+
readonly contentType: string | null
|
|
1718
1728
|
readonly url: string | null
|
|
1719
1729
|
|
|
1720
1730
|
// Owm methods of Gsf-1.Gsf.InputHTTP
|
|
@@ -2028,6 +2038,7 @@ module ODFOut {
|
|
|
2028
2038
|
// Own constructor properties of Gsf-1.Gsf.ODFOut
|
|
2029
2039
|
|
|
2030
2040
|
odf_version?: number | null
|
|
2041
|
+
odfVersion?: number | null
|
|
2031
2042
|
}
|
|
2032
2043
|
|
|
2033
2044
|
}
|
|
@@ -2037,6 +2048,7 @@ interface ODFOut {
|
|
|
2037
2048
|
// Own properties of Gsf-1.Gsf.ODFOut
|
|
2038
2049
|
|
|
2039
2050
|
readonly odf_version: number
|
|
2051
|
+
readonly odfVersion: number
|
|
2040
2052
|
|
|
2041
2053
|
// Own fields of Gsf-1.Gsf.ODFOut
|
|
2042
2054
|
|
|
@@ -2109,6 +2121,9 @@ interface Outfile {
|
|
|
2109
2121
|
|
|
2110
2122
|
// Class property signals of Gsf-1.Gsf.Outfile
|
|
2111
2123
|
|
|
2124
|
+
connect(sigName: "notify::is-closed", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2125
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2126
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2112
2127
|
connect(sigName: "notify::modtime", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2113
2128
|
connect_after(sigName: "notify::modtime", callback: (($obj: Outfile, pspec: GObject.ParamSpec) => void)): number
|
|
2114
2129
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2152,6 +2167,8 @@ module OutfileMSOle {
|
|
|
2152
2167
|
big_block_size?: number | null
|
|
2153
2168
|
sink?: Output | null
|
|
2154
2169
|
small_block_size?: number | null
|
|
2170
|
+
bigBlockSize?: number | null
|
|
2171
|
+
smallBlockSize?: number | null
|
|
2155
2172
|
}
|
|
2156
2173
|
|
|
2157
2174
|
}
|
|
@@ -2161,8 +2178,10 @@ interface OutfileMSOle {
|
|
|
2161
2178
|
// Own properties of Gsf-1.Gsf.OutfileMSOle
|
|
2162
2179
|
|
|
2163
2180
|
readonly big_block_size: number
|
|
2181
|
+
readonly bigBlockSize: number
|
|
2164
2182
|
readonly sink: Output
|
|
2165
2183
|
readonly small_block_size: number
|
|
2184
|
+
readonly smallBlockSize: number
|
|
2166
2185
|
|
|
2167
2186
|
// Owm methods of Gsf-1.Gsf.OutfileMSOle
|
|
2168
2187
|
|
|
@@ -2184,6 +2203,9 @@ interface OutfileMSOle {
|
|
|
2184
2203
|
connect(sigName: "notify::small-block-size", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2185
2204
|
connect_after(sigName: "notify::small-block-size", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2186
2205
|
emit(sigName: "notify::small-block-size", ...args: any[]): void
|
|
2206
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2207
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2208
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2187
2209
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2188
2210
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileMSOle, pspec: GObject.ParamSpec) => void)): number
|
|
2189
2211
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2255,6 +2277,8 @@ module OutfileOpenPkg {
|
|
|
2255
2277
|
content_type?: string | null
|
|
2256
2278
|
is_dir?: boolean | null
|
|
2257
2279
|
sink?: Outfile | null
|
|
2280
|
+
contentType?: string | null
|
|
2281
|
+
isDir?: boolean | null
|
|
2258
2282
|
}
|
|
2259
2283
|
|
|
2260
2284
|
}
|
|
@@ -2264,7 +2288,9 @@ interface OutfileOpenPkg {
|
|
|
2264
2288
|
// Own properties of Gsf-1.Gsf.OutfileOpenPkg
|
|
2265
2289
|
|
|
2266
2290
|
readonly content_type: string | null
|
|
2291
|
+
readonly contentType: string | null
|
|
2267
2292
|
readonly is_dir: boolean
|
|
2293
|
+
readonly isDir: boolean
|
|
2268
2294
|
readonly sink: Outfile
|
|
2269
2295
|
|
|
2270
2296
|
// Owm methods of Gsf-1.Gsf.OutfileOpenPkg
|
|
@@ -2301,6 +2327,9 @@ interface OutfileOpenPkg {
|
|
|
2301
2327
|
connect(sigName: "notify::sink", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2302
2328
|
connect_after(sigName: "notify::sink", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2303
2329
|
emit(sigName: "notify::sink", ...args: any[]): void
|
|
2330
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2331
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2332
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2304
2333
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2305
2334
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileOpenPkg, pspec: GObject.ParamSpec) => void)): number
|
|
2306
2335
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2356,6 +2385,9 @@ interface OutfileStdio {
|
|
|
2356
2385
|
|
|
2357
2386
|
// Class property signals of Gsf-1.Gsf.OutfileStdio
|
|
2358
2387
|
|
|
2388
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2389
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2390
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2359
2391
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2360
2392
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileStdio, pspec: GObject.ParamSpec) => void)): number
|
|
2361
2393
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2399,6 +2431,9 @@ module OutfileZip {
|
|
|
2399
2431
|
entry_name?: string | null
|
|
2400
2432
|
sink?: Output | null
|
|
2401
2433
|
zip64?: number | null
|
|
2434
|
+
compressionLevel?: number | null
|
|
2435
|
+
deflateLevel?: number | null
|
|
2436
|
+
entryName?: string | null
|
|
2402
2437
|
}
|
|
2403
2438
|
|
|
2404
2439
|
}
|
|
@@ -2408,8 +2443,11 @@ interface OutfileZip {
|
|
|
2408
2443
|
// Own properties of Gsf-1.Gsf.OutfileZip
|
|
2409
2444
|
|
|
2410
2445
|
readonly compression_level: number
|
|
2446
|
+
readonly compressionLevel: number
|
|
2411
2447
|
readonly deflate_level: number
|
|
2448
|
+
readonly deflateLevel: number
|
|
2412
2449
|
readonly entry_name: string | null
|
|
2450
|
+
readonly entryName: string | null
|
|
2413
2451
|
readonly sink: Output
|
|
2414
2452
|
readonly zip64: number
|
|
2415
2453
|
|
|
@@ -2434,6 +2472,9 @@ interface OutfileZip {
|
|
|
2434
2472
|
connect(sigName: "notify::zip64", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2435
2473
|
connect_after(sigName: "notify::zip64", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2436
2474
|
emit(sigName: "notify::zip64", ...args: any[]): void
|
|
2475
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2476
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2477
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2437
2478
|
connect(sigName: "notify::modtime", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2438
2479
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutfileZip, pspec: GObject.ParamSpec) => void)): number
|
|
2439
2480
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2510,6 +2551,10 @@ interface Output {
|
|
|
2510
2551
|
|
|
2511
2552
|
// Own properties of Gsf-1.Gsf.Output
|
|
2512
2553
|
|
|
2554
|
+
/**
|
|
2555
|
+
* %TRUE if the output has been closed.
|
|
2556
|
+
*/
|
|
2557
|
+
readonly isClosed: boolean
|
|
2513
2558
|
/**
|
|
2514
2559
|
* The time the output was last updated. This must be set on object
|
|
2515
2560
|
* construction and represents the timestamp to put on the resulting
|
|
@@ -2633,6 +2678,9 @@ interface Output {
|
|
|
2633
2678
|
|
|
2634
2679
|
// Class property signals of Gsf-1.Gsf.Output
|
|
2635
2680
|
|
|
2681
|
+
connect(sigName: "notify::is-closed", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2682
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2683
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2636
2684
|
connect(sigName: "notify::modtime", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2637
2685
|
connect_after(sigName: "notify::modtime", callback: (($obj: Output, pspec: GObject.ParamSpec) => void)): number
|
|
2638
2686
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2681,6 +2729,9 @@ interface OutputBzip {
|
|
|
2681
2729
|
|
|
2682
2730
|
// Class property signals of Gsf-1.Gsf.OutputBzip
|
|
2683
2731
|
|
|
2732
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2733
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2734
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2684
2735
|
connect(sigName: "notify::modtime", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2685
2736
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputBzip, pspec: GObject.ParamSpec) => void)): number
|
|
2686
2737
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2738,6 +2789,9 @@ module OutputCsv {
|
|
|
2738
2789
|
quoting_triggers?: string | null
|
|
2739
2790
|
separator?: string | null
|
|
2740
2791
|
sink?: Output | null
|
|
2792
|
+
quotingMode?: OutputCsvQuotingMode | null
|
|
2793
|
+
quotingOnWhitespace?: boolean | null
|
|
2794
|
+
quotingTriggers?: string | null
|
|
2741
2795
|
}
|
|
2742
2796
|
|
|
2743
2797
|
}
|
|
@@ -2746,7 +2800,10 @@ interface OutputCsv {
|
|
|
2746
2800
|
|
|
2747
2801
|
// Own properties of Gsf-1.Gsf.OutputCsv
|
|
2748
2802
|
|
|
2803
|
+
quotingMode: OutputCsvQuotingMode
|
|
2749
2804
|
quoting_on_whitespace: boolean
|
|
2805
|
+
quotingOnWhitespace: boolean
|
|
2806
|
+
quotingTriggers: string | null
|
|
2750
2807
|
|
|
2751
2808
|
// Own fields of Gsf-1.Gsf.OutputCsv
|
|
2752
2809
|
|
|
@@ -2770,9 +2827,18 @@ interface OutputCsv {
|
|
|
2770
2827
|
|
|
2771
2828
|
// Class property signals of Gsf-1.Gsf.OutputCsv
|
|
2772
2829
|
|
|
2830
|
+
connect(sigName: "notify::quoting-mode", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2831
|
+
connect_after(sigName: "notify::quoting-mode", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2832
|
+
emit(sigName: "notify::quoting-mode", ...args: any[]): void
|
|
2773
2833
|
connect(sigName: "notify::quoting-on-whitespace", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2774
2834
|
connect_after(sigName: "notify::quoting-on-whitespace", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2775
2835
|
emit(sigName: "notify::quoting-on-whitespace", ...args: any[]): void
|
|
2836
|
+
connect(sigName: "notify::quoting-triggers", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2837
|
+
connect_after(sigName: "notify::quoting-triggers", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2838
|
+
emit(sigName: "notify::quoting-triggers", ...args: any[]): void
|
|
2839
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2840
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2841
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2776
2842
|
connect(sigName: "notify::modtime", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2777
2843
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputCsv, pspec: GObject.ParamSpec) => void)): number
|
|
2778
2844
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2812,6 +2878,7 @@ module OutputGZip {
|
|
|
2812
2878
|
deflate_level?: number | null
|
|
2813
2879
|
raw?: boolean | null
|
|
2814
2880
|
sink?: Output | null
|
|
2881
|
+
deflateLevel?: number | null
|
|
2815
2882
|
}
|
|
2816
2883
|
|
|
2817
2884
|
}
|
|
@@ -2821,6 +2888,7 @@ interface OutputGZip {
|
|
|
2821
2888
|
// Own properties of Gsf-1.Gsf.OutputGZip
|
|
2822
2889
|
|
|
2823
2890
|
deflate_level: number
|
|
2891
|
+
deflateLevel: number
|
|
2824
2892
|
readonly raw: boolean
|
|
2825
2893
|
readonly sink: Output
|
|
2826
2894
|
|
|
@@ -2835,6 +2903,9 @@ interface OutputGZip {
|
|
|
2835
2903
|
connect(sigName: "notify::sink", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2836
2904
|
connect_after(sigName: "notify::sink", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2837
2905
|
emit(sigName: "notify::sink", ...args: any[]): void
|
|
2906
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2907
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2908
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2838
2909
|
connect(sigName: "notify::modtime", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2839
2910
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputGZip, pspec: GObject.ParamSpec) => void)): number
|
|
2840
2911
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2890,6 +2961,9 @@ interface OutputGio {
|
|
|
2890
2961
|
|
|
2891
2962
|
// Class property signals of Gsf-1.Gsf.OutputGio
|
|
2892
2963
|
|
|
2964
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2965
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2966
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2893
2967
|
connect(sigName: "notify::modtime", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2894
2968
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputGio, pspec: GObject.ParamSpec) => void)): number
|
|
2895
2969
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2935,6 +3009,9 @@ interface OutputIOChannel {
|
|
|
2935
3009
|
|
|
2936
3010
|
// Class property signals of Gsf-1.Gsf.OutputIOChannel
|
|
2937
3011
|
|
|
3012
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
3013
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
3014
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
2938
3015
|
connect(sigName: "notify::modtime", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
2939
3016
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputIOChannel, pspec: GObject.ParamSpec) => void)): number
|
|
2940
3017
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -2982,6 +3059,8 @@ module OutputIconv {
|
|
|
2982
3059
|
input_charset?: string | null
|
|
2983
3060
|
output_charset?: string | null
|
|
2984
3061
|
sink?: Output | null
|
|
3062
|
+
inputCharset?: string | null
|
|
3063
|
+
outputCharset?: string | null
|
|
2985
3064
|
}
|
|
2986
3065
|
|
|
2987
3066
|
}
|
|
@@ -2997,7 +3076,9 @@ interface OutputIconv {
|
|
|
2997
3076
|
*/
|
|
2998
3077
|
fallback: string | null
|
|
2999
3078
|
readonly input_charset: string | null
|
|
3079
|
+
readonly inputCharset: string | null
|
|
3000
3080
|
readonly output_charset: string | null
|
|
3081
|
+
readonly outputCharset: string | null
|
|
3001
3082
|
readonly sink: Output
|
|
3002
3083
|
|
|
3003
3084
|
// Class property signals of Gsf-1.Gsf.OutputIconv
|
|
@@ -3014,6 +3095,9 @@ interface OutputIconv {
|
|
|
3014
3095
|
connect(sigName: "notify::sink", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3015
3096
|
connect_after(sigName: "notify::sink", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3016
3097
|
emit(sigName: "notify::sink", ...args: any[]): void
|
|
3098
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3099
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3100
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
3017
3101
|
connect(sigName: "notify::modtime", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3018
3102
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputIconv, pspec: GObject.ParamSpec) => void)): number
|
|
3019
3103
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -3078,6 +3162,9 @@ interface OutputMemory {
|
|
|
3078
3162
|
|
|
3079
3163
|
// Class property signals of Gsf-1.Gsf.OutputMemory
|
|
3080
3164
|
|
|
3165
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3166
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3167
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
3081
3168
|
connect(sigName: "notify::modtime", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3082
3169
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputMemory, pspec: GObject.ParamSpec) => void)): number
|
|
3083
3170
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -3121,6 +3208,9 @@ interface OutputStdio {
|
|
|
3121
3208
|
|
|
3122
3209
|
// Class property signals of Gsf-1.Gsf.OutputStdio
|
|
3123
3210
|
|
|
3211
|
+
connect(sigName: "notify::is-closed", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3212
|
+
connect_after(sigName: "notify::is-closed", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3213
|
+
emit(sigName: "notify::is-closed", ...args: any[]): void
|
|
3124
3214
|
connect(sigName: "notify::modtime", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3125
3215
|
connect_after(sigName: "notify::modtime", callback: (($obj: OutputStdio, pspec: GObject.ParamSpec) => void)): number
|
|
3126
3216
|
emit(sigName: "notify::modtime", ...args: any[]): void
|
|
@@ -3265,6 +3355,7 @@ module XMLOut {
|
|
|
3265
3355
|
|
|
3266
3356
|
pretty_print?: boolean | null
|
|
3267
3357
|
sink?: Output | null
|
|
3358
|
+
prettyPrint?: boolean | null
|
|
3268
3359
|
}
|
|
3269
3360
|
|
|
3270
3361
|
}
|
|
@@ -3274,6 +3365,7 @@ interface XMLOut {
|
|
|
3274
3365
|
// Own properties of Gsf-1.Gsf.XMLOut
|
|
3275
3366
|
|
|
3276
3367
|
pretty_print: boolean
|
|
3368
|
+
prettyPrint: boolean
|
|
3277
3369
|
readonly sink: Output
|
|
3278
3370
|
|
|
3279
3371
|
// Own fields of Gsf-1.Gsf.XMLOut
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gsf-1",
|
|
3
|
-
"version": "1.0.0-3.2.
|
|
3
|
+
"version": "1.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gsf-1, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gsf-1.js",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gsf-1.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
29
|
-
"@girs/gjs": "^3.2.
|
|
30
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
31
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
32
|
-
"@girs/libxml2-2.0": "^2.0.0-3.2.
|
|
28
|
+
"@girs/gio-2.0": "^2.78.0-3.2.6",
|
|
29
|
+
"@girs/gjs": "^3.2.6",
|
|
30
|
+
"@girs/glib-2.0": "^2.78.0-3.2.6",
|
|
31
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.6",
|
|
32
|
+
"@girs/libxml2-2.0": "^2.0.0-3.2.6"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"typescript": "*"
|