@girs/grlnet-0.2 0.2.0-3.0.0-beta.12

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 ADDED
@@ -0,0 +1,31 @@
1
+
2
+ # GrlNet-0.2
3
+
4
+ GJS TypeScript type definitions for GrlNet-0.2, generated from library version 0.2.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gjs) v3.0.0-beta.12.
5
+
6
+ ## Install
7
+
8
+ To use this type definitions, install them with NPM like this:
9
+ ```bash
10
+ npm install @girs/grlnet-0.2
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ You can import this package into your project like this:
16
+ ```ts
17
+ import GrlNet from '@girs/grlnet-0.2';
18
+ ```
19
+
20
+ Or if you prefer CommonJS, you can also use this:
21
+ ```ts
22
+ const GrlNet = require('@girs/grlnet-0.2');
23
+ ```
24
+
25
+ If you use [ambient modules](https://github.com/gjsify/ts-for-gir/tree/main/packages/cli#ambient-modules), you can also import this module like you would do this in JavaScript:
26
+
27
+ ```ts
28
+ import GrlNet from 'gi://GrlNet?version=0.2';
29
+ ```
30
+
31
+ 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/grlnet-0.2.cjs ADDED
@@ -0,0 +1,9 @@
1
+
2
+
3
+ imports.gi.versions.GrlNet = '0.2'
4
+ const GrlNet = imports.gi.GrlNet;
5
+
6
+ module.exports = GrlNet;
7
+
8
+
9
+
@@ -0,0 +1,249 @@
1
+
2
+ /*
3
+ * Type Definitions for Gjs (https://gjs.guide/)
4
+ *
5
+ * These type definitions are automatically generated, do not edit them by hand.
6
+ * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gjs
7
+ */
8
+ /**
9
+ * GrlNet-0.2
10
+ */
11
+
12
+ import type Soup from '@girs/soup-2.4';
13
+ import type Gio from '@girs/gio-2.0';
14
+ import type GObject from '@girs/gobject-2.0';
15
+ import type GLib from '@girs/glib-2.0';
16
+
17
+ /**
18
+ * These constants identify all the available errors managed by
19
+ * the web client.
20
+ */
21
+ export enum WcError {
22
+ /**
23
+ * TBD
24
+ */
25
+ UNAVAILABLE,
26
+ /**
27
+ * Invalid URI or header
28
+ */
29
+ PROTOCOL_ERROR,
30
+ /**
31
+ * Required authentication
32
+ */
33
+ AUTHENTICATION_REQUIRED,
34
+ /**
35
+ * Request resource not found
36
+ */
37
+ NOT_FOUND,
38
+ /**
39
+ * The entry has been modified since is was
40
+ * downloaded
41
+ */
42
+ CONFLICT,
43
+ /**
44
+ * TBD
45
+ */
46
+ FORBIDDEN,
47
+ /**
48
+ * Cannot connect to the server
49
+ */
50
+ NETWORK_ERROR,
51
+ /**
52
+ * Cannot connect to the proxy server
53
+ */
54
+ PROXY_ERROR,
55
+ /**
56
+ * The operation has been cancelled (see #GCancellable)
57
+ */
58
+ CANCELLED,
59
+ }
60
+ export module Wc {
61
+
62
+ // Constructor properties interface
63
+
64
+ export interface ConstructorProperties extends GObject.Object.ConstructorProperties {
65
+
66
+ // Own constructor properties of GrlNet-0.2.GrlNet.Wc
67
+
68
+ cache?: boolean | null
69
+ cache_size?: number | null
70
+ loglevel?: number | null
71
+ throttling?: number | null
72
+ user_agent?: string | null
73
+ }
74
+
75
+ }
76
+
77
+ export interface Wc {
78
+
79
+ // Own properties of GrlNet-0.2.GrlNet.Wc
80
+
81
+ cache: boolean
82
+ cache_size: number
83
+ loglevel: number
84
+ throttling: number
85
+ user_agent: string | null
86
+
87
+ // Own fields of GrlNet-0.2.GrlNet.Wc
88
+
89
+ /**
90
+ * the parent object struct
91
+ * @field
92
+ */
93
+ parent: GObject.Object
94
+
95
+ // Owm methods of GrlNet-0.2.GrlNet.Wc
96
+
97
+ /**
98
+ * This method will flush all the pending request in the queue.
99
+ */
100
+ flush_delayed_requests(): void
101
+ /**
102
+ * Request the fetching of a web resource given the `uri`. This request is
103
+ * asynchronous, thus the result will be returned within the `callback`.
104
+ * @param uri The URI of the resource to request
105
+ * @param cancellable a #GCancellable instance or %NULL to ignore
106
+ * @param callback The callback when the result is ready
107
+ */
108
+ request_async(uri: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
109
+ /**
110
+ * Finishes an asynchronous load of the file's contents.
111
+ * The contents are placed in contents, and length is set to the size of the
112
+ * contents string.
113
+ *
114
+ * The content address will be invalidated at the next request. So if you
115
+ * want to keep it, please copy it into another address.
116
+ * @param result The result of the request
117
+ * @returns %TRUE if the request was successfull. If %FALSE an error occurred.
118
+ */
119
+ request_finish(result: Gio.AsyncResult): [ /* returnType */ boolean, /* content */ string | null, /* length */ number ]
120
+ /**
121
+ * Request the fetching of a web resource given the `uri`. This request is
122
+ * asynchronous, thus the result will be returned within the `callback`.
123
+ * @param uri The URI of the resource to request
124
+ * @param headers a set of additional HTTP headers for this request or %NULL to ignore
125
+ * @param cancellable a #GCancellable instance or %NULL to ignore
126
+ * @param callback The callback when the result is ready
127
+ */
128
+ request_with_headers_async(uri: string | null, headers: GLib.HashTable | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
129
+ /**
130
+ * Sets if cache must be used. Note that this will only work if caching is
131
+ * supporting. If sets %TRUE, a new cache will be created. If sets to %FALSE,
132
+ * current cache is clean and removed.
133
+ * @param use_cache if cache must be used or not
134
+ */
135
+ set_cache(use_cache: boolean): void
136
+ /**
137
+ * Sets the new maximum size of cache, in Megabytes. Default value is 10. Using
138
+ * 0 means no cache will be done.
139
+ * @param cache_size size of cache (in Mb)
140
+ */
141
+ set_cache_size(cache_size: number): void
142
+ /**
143
+ * Setting the log level the logger feature is added into
144
+ * the libsoup session.
145
+ * @param log_level the libsoup log level to set [0,3]
146
+ */
147
+ set_log_level(log_level: number): void
148
+ /**
149
+ * Setting this property, the #GrlNetWc will queue all the requests and
150
+ * will dispatch them with a pause between them of this value.
151
+ * @param throttling the number of seconds to wait between requests
152
+ */
153
+ set_throttling(throttling: number): void
154
+
155
+ // Class property signals of GrlNet-0.2.GrlNet.Wc
156
+
157
+ connect(sigName: "notify::cache", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
158
+ connect_after(sigName: "notify::cache", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
159
+ emit(sigName: "notify::cache", ...args: any[]): void
160
+ connect(sigName: "notify::cache-size", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
161
+ connect_after(sigName: "notify::cache-size", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
162
+ emit(sigName: "notify::cache-size", ...args: any[]): void
163
+ connect(sigName: "notify::loglevel", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
164
+ connect_after(sigName: "notify::loglevel", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
165
+ emit(sigName: "notify::loglevel", ...args: any[]): void
166
+ connect(sigName: "notify::throttling", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
167
+ connect_after(sigName: "notify::throttling", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
168
+ emit(sigName: "notify::throttling", ...args: any[]): void
169
+ connect(sigName: "notify::user-agent", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
170
+ connect_after(sigName: "notify::user-agent", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
171
+ emit(sigName: "notify::user-agent", ...args: any[]): void
172
+ connect(sigName: string, callback: (...args: any[]) => void): number
173
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
174
+ emit(sigName: string, ...args: any[]): void
175
+ disconnect(id: number): void
176
+ }
177
+
178
+ export class Wc extends GObject.Object {
179
+
180
+ // Own properties of GrlNet-0.2.GrlNet.Wc
181
+
182
+ static name: string
183
+ static $gtype: GObject.GType<Wc>
184
+
185
+ // Constructors of GrlNet-0.2.GrlNet.Wc
186
+
187
+ constructor(config?: Wc.ConstructorProperties)
188
+ /**
189
+ * Creates a new #GrlNetWc.
190
+ * @constructor
191
+ * @returns a new allocated instance of #GrlNetWc. Do g_object_unref() after use it.
192
+ */
193
+ constructor()
194
+ /**
195
+ * Creates a new #GrlNetWc.
196
+ * @constructor
197
+ * @returns a new allocated instance of #GrlNetWc. Do g_object_unref() after use it.
198
+ */
199
+ static new(): Wc
200
+ _init(config?: Wc.ConstructorProperties): void
201
+ static error_quark(): GLib.Quark
202
+ }
203
+
204
+ export interface WcClass {
205
+
206
+ // Own fields of GrlNet-0.2.GrlNet.WcClass
207
+
208
+ /**
209
+ * the parent class structure
210
+ * @field
211
+ */
212
+ parent_class: GObject.ObjectClass
213
+ }
214
+
215
+ /**
216
+ * Grilo web client helper class.
217
+ *
218
+ * It's a simple and thin web client to be used by the sources to download
219
+ * content from Internet.
220
+ * @record
221
+ */
222
+ export abstract class WcClass {
223
+
224
+ // Own properties of GrlNet-0.2.GrlNet.WcClass
225
+
226
+ static name: string
227
+ }
228
+
229
+ export interface WcPrivate {
230
+ }
231
+
232
+ export class WcPrivate {
233
+
234
+ // Own properties of GrlNet-0.2.GrlNet.WcPrivate
235
+
236
+ static name: string
237
+ }
238
+
239
+ /**
240
+ * Name of the imported GIR library
241
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
242
+ */
243
+ export const __name__: string
244
+ /**
245
+ * Version of the imported GIR library
246
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
247
+ */
248
+ export const __version__: string
249
+ // END
@@ -0,0 +1,254 @@
1
+
2
+ /*
3
+ * Type Definitions for Gjs (https://gjs.guide/)
4
+ *
5
+ * These type definitions are automatically generated, do not edit them by hand.
6
+ * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gjs
7
+ */
8
+ /**
9
+ * GrlNet-0.2
10
+ */
11
+
12
+ import type Soup from '@girs/soup-2.4';
13
+ import type Gio from '@girs/gio-2.0';
14
+ import type GObject from '@girs/gobject-2.0';
15
+ import type GLib from '@girs/glib-2.0';
16
+
17
+ export namespace GrlNet {
18
+
19
+ /**
20
+ * These constants identify all the available errors managed by
21
+ * the web client.
22
+ */
23
+ enum WcError {
24
+ /**
25
+ * TBD
26
+ */
27
+ UNAVAILABLE,
28
+ /**
29
+ * Invalid URI or header
30
+ */
31
+ PROTOCOL_ERROR,
32
+ /**
33
+ * Required authentication
34
+ */
35
+ AUTHENTICATION_REQUIRED,
36
+ /**
37
+ * Request resource not found
38
+ */
39
+ NOT_FOUND,
40
+ /**
41
+ * The entry has been modified since is was
42
+ * downloaded
43
+ */
44
+ CONFLICT,
45
+ /**
46
+ * TBD
47
+ */
48
+ FORBIDDEN,
49
+ /**
50
+ * Cannot connect to the server
51
+ */
52
+ NETWORK_ERROR,
53
+ /**
54
+ * Cannot connect to the proxy server
55
+ */
56
+ PROXY_ERROR,
57
+ /**
58
+ * The operation has been cancelled (see #GCancellable)
59
+ */
60
+ CANCELLED,
61
+ }
62
+ module Wc {
63
+
64
+ // Constructor properties interface
65
+
66
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
67
+
68
+ // Own constructor properties of GrlNet-0.2.GrlNet.Wc
69
+
70
+ cache?: boolean | null
71
+ cache_size?: number | null
72
+ loglevel?: number | null
73
+ throttling?: number | null
74
+ user_agent?: string | null
75
+ }
76
+
77
+ }
78
+
79
+ interface Wc {
80
+
81
+ // Own properties of GrlNet-0.2.GrlNet.Wc
82
+
83
+ cache: boolean
84
+ cache_size: number
85
+ loglevel: number
86
+ throttling: number
87
+ user_agent: string | null
88
+
89
+ // Own fields of GrlNet-0.2.GrlNet.Wc
90
+
91
+ /**
92
+ * the parent object struct
93
+ * @field
94
+ */
95
+ parent: GObject.Object
96
+
97
+ // Owm methods of GrlNet-0.2.GrlNet.Wc
98
+
99
+ /**
100
+ * This method will flush all the pending request in the queue.
101
+ */
102
+ flush_delayed_requests(): void
103
+ /**
104
+ * Request the fetching of a web resource given the `uri`. This request is
105
+ * asynchronous, thus the result will be returned within the `callback`.
106
+ * @param uri The URI of the resource to request
107
+ * @param cancellable a #GCancellable instance or %NULL to ignore
108
+ * @param callback The callback when the result is ready
109
+ */
110
+ request_async(uri: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
111
+ /**
112
+ * Finishes an asynchronous load of the file's contents.
113
+ * The contents are placed in contents, and length is set to the size of the
114
+ * contents string.
115
+ *
116
+ * The content address will be invalidated at the next request. So if you
117
+ * want to keep it, please copy it into another address.
118
+ * @param result The result of the request
119
+ * @returns %TRUE if the request was successfull. If %FALSE an error occurred.
120
+ */
121
+ request_finish(result: Gio.AsyncResult): [ /* returnType */ boolean, /* content */ string | null, /* length */ number ]
122
+ /**
123
+ * Request the fetching of a web resource given the `uri`. This request is
124
+ * asynchronous, thus the result will be returned within the `callback`.
125
+ * @param uri The URI of the resource to request
126
+ * @param headers a set of additional HTTP headers for this request or %NULL to ignore
127
+ * @param cancellable a #GCancellable instance or %NULL to ignore
128
+ * @param callback The callback when the result is ready
129
+ */
130
+ request_with_headers_async(uri: string | null, headers: GLib.HashTable | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
131
+ /**
132
+ * Sets if cache must be used. Note that this will only work if caching is
133
+ * supporting. If sets %TRUE, a new cache will be created. If sets to %FALSE,
134
+ * current cache is clean and removed.
135
+ * @param use_cache if cache must be used or not
136
+ */
137
+ set_cache(use_cache: boolean): void
138
+ /**
139
+ * Sets the new maximum size of cache, in Megabytes. Default value is 10. Using
140
+ * 0 means no cache will be done.
141
+ * @param cache_size size of cache (in Mb)
142
+ */
143
+ set_cache_size(cache_size: number): void
144
+ /**
145
+ * Setting the log level the logger feature is added into
146
+ * the libsoup session.
147
+ * @param log_level the libsoup log level to set [0,3]
148
+ */
149
+ set_log_level(log_level: number): void
150
+ /**
151
+ * Setting this property, the #GrlNetWc will queue all the requests and
152
+ * will dispatch them with a pause between them of this value.
153
+ * @param throttling the number of seconds to wait between requests
154
+ */
155
+ set_throttling(throttling: number): void
156
+
157
+ // Class property signals of GrlNet-0.2.GrlNet.Wc
158
+
159
+ connect(sigName: "notify::cache", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
160
+ connect_after(sigName: "notify::cache", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
161
+ emit(sigName: "notify::cache", ...args: any[]): void
162
+ connect(sigName: "notify::cache-size", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
163
+ connect_after(sigName: "notify::cache-size", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
164
+ emit(sigName: "notify::cache-size", ...args: any[]): void
165
+ connect(sigName: "notify::loglevel", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
166
+ connect_after(sigName: "notify::loglevel", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
167
+ emit(sigName: "notify::loglevel", ...args: any[]): void
168
+ connect(sigName: "notify::throttling", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
169
+ connect_after(sigName: "notify::throttling", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
170
+ emit(sigName: "notify::throttling", ...args: any[]): void
171
+ connect(sigName: "notify::user-agent", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
172
+ connect_after(sigName: "notify::user-agent", callback: (($obj: Wc, pspec: GObject.ParamSpec) => void)): number
173
+ emit(sigName: "notify::user-agent", ...args: any[]): void
174
+ connect(sigName: string, callback: (...args: any[]) => void): number
175
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
176
+ emit(sigName: string, ...args: any[]): void
177
+ disconnect(id: number): void
178
+ }
179
+
180
+ class Wc extends GObject.Object {
181
+
182
+ // Own properties of GrlNet-0.2.GrlNet.Wc
183
+
184
+ static name: string
185
+ static $gtype: GObject.GType<Wc>
186
+
187
+ // Constructors of GrlNet-0.2.GrlNet.Wc
188
+
189
+ constructor(config?: Wc.ConstructorProperties)
190
+ /**
191
+ * Creates a new #GrlNetWc.
192
+ * @constructor
193
+ * @returns a new allocated instance of #GrlNetWc. Do g_object_unref() after use it.
194
+ */
195
+ constructor()
196
+ /**
197
+ * Creates a new #GrlNetWc.
198
+ * @constructor
199
+ * @returns a new allocated instance of #GrlNetWc. Do g_object_unref() after use it.
200
+ */
201
+ static new(): Wc
202
+ _init(config?: Wc.ConstructorProperties): void
203
+ static error_quark(): GLib.Quark
204
+ }
205
+
206
+ interface WcClass {
207
+
208
+ // Own fields of GrlNet-0.2.GrlNet.WcClass
209
+
210
+ /**
211
+ * the parent class structure
212
+ * @field
213
+ */
214
+ parent_class: GObject.ObjectClass
215
+ }
216
+
217
+ /**
218
+ * Grilo web client helper class.
219
+ *
220
+ * It's a simple and thin web client to be used by the sources to download
221
+ * content from Internet.
222
+ * @record
223
+ */
224
+ abstract class WcClass {
225
+
226
+ // Own properties of GrlNet-0.2.GrlNet.WcClass
227
+
228
+ static name: string
229
+ }
230
+
231
+ interface WcPrivate {
232
+ }
233
+
234
+ class WcPrivate {
235
+
236
+ // Own properties of GrlNet-0.2.GrlNet.WcPrivate
237
+
238
+ static name: string
239
+ }
240
+
241
+ /**
242
+ * Name of the imported GIR library
243
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
244
+ */
245
+ const __name__: string
246
+ /**
247
+ * Version of the imported GIR library
248
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
249
+ */
250
+ const __version__: string
251
+ }
252
+
253
+ export default GrlNet;
254
+ // END
package/grlnet-0.2.js ADDED
@@ -0,0 +1,8 @@
1
+
2
+
3
+ // @ts-expect-error
4
+ import GrlNet from 'gi://GrlNet?version=0.2';
5
+ export { GrlNet };
6
+ export default GrlNet;
7
+
8
+
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@girs/grlnet-0.2",
3
+ "version": "0.2.0-3.0.0-beta.12",
4
+ "description": "GJS TypeScript type definitions for GrlNet-0.2, generated from library version 0.2.0",
5
+ "type": "module",
6
+ "module": "grlnet-0.2.js",
7
+ "main": "grlnet-0.2.js",
8
+ "typedoc": {
9
+ "entryPoint": "./grlnet-0.2.d.ts",
10
+ "readmeFile": "./README.md",
11
+ "displayName": "GrlNet-0.2",
12
+ "tsconfig": "./tsconfig.doc.json"
13
+ },
14
+ "exports": {
15
+ ".": {
16
+ "import": {
17
+ "types": "./grlnet-0.2.d.ts",
18
+ "default": "./grlnet-0.2.js"
19
+ },
20
+ "require": {
21
+ "types": "./grlnet-0.2.d.cts",
22
+ "default": "./grlnet-0.2.cjs"
23
+ }
24
+ }
25
+ },
26
+ "scripts": {
27
+ "test": "yarn test:esm && yarn test:cjs",
28
+ "test:esm": "tsc --noEmit grlnet-0.2.d.ts",
29
+ "test:cjs": "tsc --noEmit grlnet-0.2.d.cts"
30
+ },
31
+ "dependencies": {
32
+ "@girs/gio-2.0": "^2.75.1-3.0.0-beta.12",
33
+ "@girs/glib-2.0": "^2.75.1-3.0.0-beta.12",
34
+ "@girs/gobject-2.0": "^2.75.1-3.0.0-beta.12",
35
+ "@girs/soup-2.4": "^2.74.3-3.0.0-beta.12"
36
+ },
37
+ "devDependencies": {
38
+ "typescript": "^*"
39
+ },
40
+ "keywords": [
41
+ "Gir",
42
+ "TypeScript",
43
+ "GrlNet-0.2"
44
+ ],
45
+ "author": "ts-for-gir",
46
+ "license": "Apache-2.0",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
53
+ },
54
+ "homepage": "https://github.com/gjsify/ts-for-gir#readme"
55
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ // General settings for code interpretation
4
+ "target": "ESNext",
5
+ "module": "ESNext",
6
+ "experimentalDecorators": true,
7
+ "moduleResolution": "node",
8
+ "noEmit": true,
9
+ "noEmitOnError": false,
10
+ "baseUrl": "./",
11
+ "rootDir": ".",
12
+ // General settings for code generation
13
+ "removeComments": false,
14
+ "inlineSourceMap": false,
15
+ "inlineSources": false,
16
+ "newLine": "LF"
17
+ },
18
+ "include": ["./grlnet-0.2.d.ts"]
19
+ }