@girs/mtk-18 4.0.4

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,85 @@
1
+
2
+ # Mtk-18
3
+
4
+ ![version](https://img.shields.io/npm/v/@girs/mtk-18)
5
+ ![downloads/week](https://img.shields.io/npm/dw/@girs/mtk-18)
6
+
7
+
8
+ GJS TypeScript type definitions for Mtk-18, generated from library version 18.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.4.
9
+
10
+ ## Install
11
+
12
+ To use this type definitions, install them with NPM:
13
+ ```bash
14
+ npm install @girs/mtk-18
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ You can import this package into your project like this:
20
+ ```ts
21
+ import Mtk from '@girs/mtk-18';
22
+ ```
23
+
24
+ ### Ambient Modules
25
+
26
+ You can also use [ambient modules](https://github.com/gjsify/ts-for-gir/tree/main/packages/cli#ambient-modules) to import this module like you would do this in JavaScript.
27
+ For this you need to include `@girs/mtk-18` or `@girs/mtk-18/ambient` in your `tsconfig` or entry point Typescript file:
28
+
29
+ `index.ts`:
30
+ ```ts
31
+ import '@girs/mtk-18'
32
+ ```
33
+
34
+ `tsconfig.json`:
35
+ ```json
36
+ {
37
+ "compilerOptions": {
38
+ ...
39
+ },
40
+ "include": ["@girs/mtk-18"],
41
+ ...
42
+ }
43
+ ```
44
+
45
+ Now you can import the ambient module with TypeScript support:
46
+
47
+ ```ts
48
+ import Mtk from 'gi://Mtk?version=18';
49
+ ```
50
+
51
+ ### Global import
52
+
53
+ You can also import the module with Typescript support using the global `imports.gi` object of GJS.
54
+ For this you need to include `@girs/mtk-18` or `@girs/mtk-18/import` in your `tsconfig` or entry point Typescript file:
55
+
56
+ `index.ts`:
57
+ ```ts
58
+ import '@girs/mtk-18'
59
+ ```
60
+
61
+ `tsconfig.json`:
62
+ ```json
63
+ {
64
+ "compilerOptions": {
65
+ ...
66
+ },
67
+ "include": ["@girs/mtk-18"],
68
+ ...
69
+ }
70
+ ```
71
+
72
+ Now you have also type support for this, too:
73
+
74
+ ```ts
75
+ const Mtk = imports.gi.Mtk;
76
+ ```
77
+
78
+ ### Bundle
79
+
80
+ 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).
81
+
82
+ ## Other packages
83
+
84
+ All existing pre-generated packages can be found on [gjsify/types](https://github.com/gjsify/types).
85
+
package/index.d.ts ADDED
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Type Definitions for Gjs (https://gjs.guide/)
3
+ *
4
+ * These type definitions are automatically generated, do not edit them by hand.
5
+ * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gir
6
+ *
7
+ * This template is used to generate the index.d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
8
+ */
9
+
10
+ import './mtk-18-ambient.d.ts';
11
+
12
+ import './mtk-18-import.d.ts';
13
+
14
+ import Mtk from './mtk-18.js';
15
+ export default Mtk;
16
+
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Mtk from './mtk-18.js';
4
+ export default Mtk;
5
+
@@ -0,0 +1,12 @@
1
+
2
+ declare module 'gi://Mtk?version=18' {
3
+ import Mtk18 from '@girs/mtk-18';
4
+ export default Mtk18;
5
+ }
6
+
7
+ declare module 'gi://Mtk' {
8
+ import Mtk18 from 'gi://Mtk?version=18';
9
+ export default Mtk18;
10
+ }
11
+
12
+
@@ -0,0 +1,2 @@
1
+ export {}
2
+
@@ -0,0 +1,12 @@
1
+
2
+ import type Mtk18 from '@girs/mtk-18';
3
+
4
+ declare global {
5
+ export interface GjsGiImports {
6
+ Mtk: typeof Mtk18;
7
+ }
8
+ }
9
+
10
+ export default GjsGiImports;
11
+
12
+
@@ -0,0 +1,3 @@
1
+ const gi = globalThis.imports?.gi || {};
2
+ export default gi;
3
+
package/mtk-18.d.ts ADDED
@@ -0,0 +1,562 @@
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-gir
7
+ *
8
+ * The based EJS template file is used for the generated .d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
9
+ */
10
+
11
+ import '@girs/gjs';
12
+
13
+ // Module dependencies
14
+ import type Graphene from '@girs/graphene-1.0';
15
+ import type GObject from '@girs/gobject-2.0';
16
+ import type GLib from '@girs/glib-2.0';
17
+
18
+ export namespace Mtk {
19
+
20
+ /**
21
+ * Mtk-18
22
+ */
23
+
24
+
25
+ /**
26
+ * @gir-type Enum
27
+ */
28
+ enum AnonymousFileMapmode {
29
+ PRIVATE,
30
+ SHARED,
31
+ }
32
+
33
+
34
+ /**
35
+ * @gir-type Struct
36
+ */
37
+ class MonitorTransform {
38
+ static $gtype: GObject.GType<MonitorTransform>;
39
+
40
+ // Static fields
41
+ static NORMAL: number;
42
+
43
+ static "90": number;
44
+
45
+ static "180": number;
46
+
47
+ static "270": number;
48
+
49
+ static FLIPPED: number;
50
+
51
+ static FLIPPED_90: number;
52
+
53
+ static FLIPPED_180: number;
54
+
55
+ static FLIPPED_270: number;
56
+ }
57
+
58
+
59
+ /**
60
+ * @gir-type Enum
61
+ */
62
+ enum RegionOverlap {
63
+ OUT,
64
+ IN,
65
+ PART,
66
+ }
67
+
68
+
69
+ /**
70
+ * @gir-type Enum
71
+ */
72
+ enum RoundingStrategy {
73
+ SHRINK,
74
+ GROW,
75
+ ROUND,
76
+ }
77
+
78
+
79
+ const MONITOR_ALL_TRANSFORMS: number;
80
+
81
+ const MONITOR_N_TRANSFORMS: number;
82
+
83
+ const RECTANGLE_MAX_STACK_RECTS: number;
84
+
85
+ const REGION_BUILDER_MAX_LEVELS: number;
86
+
87
+ /**
88
+ * @param matrix
89
+ * @param width
90
+ * @param height
91
+ * @param scale
92
+ * @param transform
93
+ * @param src_rect
94
+ */
95
+ function compute_viewport_matrix(matrix: Graphene.Matrix, width: number, height: number, scale: number, transform: MonitorTransform, src_rect: Graphene.Rect): void;
96
+
97
+ /**
98
+ * @param boundary_us
99
+ * @param base_us
100
+ * @param interval_us
101
+ */
102
+ function extrapolate_next_interval_boundary(boundary_us: bigint | number, base_us: bigint | number, interval_us: bigint | number): number;
103
+
104
+ /**
105
+ * @param boundary_us
106
+ * @param base_us
107
+ * @param interval_us
108
+ */
109
+ function find_nearest_interval_boundary(boundary_us: bigint | number, base_us: bigint | number, interval_us: bigint | number): number;
110
+
111
+ /**
112
+ * @param name
113
+ */
114
+ function monitor_transform_from_string(name: string): MonitorTransform;
115
+
116
+ /**
117
+ * @param transform
118
+ */
119
+ function monitor_transform_invert(transform: MonitorTransform): MonitorTransform;
120
+
121
+ /**
122
+ * @param transform
123
+ */
124
+ function monitor_transform_to_string(transform: MonitorTransform): string;
125
+
126
+ /**
127
+ * @param transform
128
+ * @param other
129
+ */
130
+ function monitor_transform_transform(transform: MonitorTransform, other: MonitorTransform): MonitorTransform;
131
+
132
+ /**
133
+ * @param transform
134
+ * @param matrix
135
+ */
136
+ function monitor_transform_transform_matrix(transform: MonitorTransform, matrix: Graphene.Matrix): void;
137
+
138
+ /**
139
+ * @param transform
140
+ * @param area_width
141
+ * @param area_height
142
+ * @param point_x
143
+ * @param point_y
144
+ */
145
+ function monitor_transform_transform_point(transform: MonitorTransform, area_width: number, area_height: number, point_x: number, point_y: number): void;
146
+
147
+ /**
148
+ * @param rect A rectangle
149
+ * @param rounding_strategy The rounding strategy
150
+ */
151
+ function rectangle_from_graphene_rect(rect: Graphene.Rect, rounding_strategy: RoundingStrategy): Rectangle;
152
+
153
+ function region_create(): Region;
154
+
155
+ /**
156
+ * @param rect
157
+ */
158
+ function region_create_rectangle(rect: Rectangle): Region;
159
+
160
+ /**
161
+ * @param rects
162
+ * @param n_rects
163
+ */
164
+ function region_create_rectangles(rects: Rectangle, n_rects: number): Region;
165
+
166
+ function x11_errors_deinit(): void;
167
+
168
+ /**
169
+ * @gir-type Struct
170
+ */
171
+ abstract class AnonymousFile {
172
+ static $gtype: GObject.GType<AnonymousFile>;
173
+
174
+ // Methods
175
+ /**
176
+ * Free the resources used by an anonymous read-only file.
177
+ */
178
+ free(): void;
179
+ }
180
+
181
+
182
+ /**
183
+ * @gir-type Struct
184
+ */
185
+ abstract class DbusPidfd {
186
+ static $gtype: GObject.GType<DbusPidfd>;
187
+
188
+ // Methods
189
+ free(): void;
190
+
191
+ get_pid(): never;
192
+
193
+ get_pidfd(): number;
194
+ }
195
+
196
+
197
+ /**
198
+ * @gir-type Struct
199
+ */
200
+ class Rectangle {
201
+ static $gtype: GObject.GType<Rectangle>;
202
+
203
+ // Fields
204
+ x: number;
205
+
206
+ y: number;
207
+
208
+ width: number;
209
+
210
+ height: number;
211
+
212
+ // Constructors
213
+
214
+ constructor(properties?: Partial<{
215
+ x: number;
216
+ y: number;
217
+ width: number;
218
+ height: number;
219
+ }>);
220
+
221
+ static ["new"](x: number, y: number, width: number, height: number): Rectangle;
222
+
223
+ static new_empty(): Rectangle;
224
+
225
+ // Static methods
226
+ /**
227
+ * @param rect A rectangle
228
+ * @param rounding_strategy The rounding strategy
229
+ */
230
+ static from_graphene_rect(rect: Graphene.Rect, rounding_strategy: RoundingStrategy): Rectangle;
231
+
232
+ // Methods
233
+ /**
234
+ * @returns The area of the rectangle
235
+ */
236
+ area(): number;
237
+
238
+ /**
239
+ * @param x X coordinate of the point
240
+ * @param y Y coordinate of the point
241
+ * @returns Whether the rectangle contains the point
242
+ */
243
+ contains_point(x: number, y: number): boolean;
244
+
245
+ /**
246
+ * @param x X coordinate of the point
247
+ * @param y Y coordinate of the point
248
+ * @returns Whether the rectangle contains the point
249
+ */
250
+ contains_pointf(x: number, y: number): boolean;
251
+
252
+ /**
253
+ * @param inner_rect The inner rectangle
254
+ * @returns Whether the outer rectangle contains the inner one
255
+ */
256
+ contains_rect(inner_rect: Rectangle): boolean;
257
+
258
+ copy(): Rectangle;
259
+
260
+ /**
261
+ * @param inner_rect The inner rectangle
262
+ * @returns Whether the inner rectangle could fit inside the outer one
263
+ */
264
+ could_fit_rect(inner_rect: Rectangle): boolean;
265
+
266
+ /**
267
+ * @param src_rect
268
+ * @param dst_width
269
+ * @param dst_height
270
+ * @param dest
271
+ */
272
+ crop_and_scale(src_rect: Graphene.Rect, dst_width: number, dst_height: number, dest: Rectangle): void;
273
+
274
+ /**
275
+ * Compares the two rectangles
276
+ * @param src2 The second rectangle
277
+ * @returns Whether the two rectangles are equal
278
+ */
279
+ equal(src2: Rectangle): boolean;
280
+
281
+ free(): void;
282
+
283
+ /**
284
+ * Similar to {@link Rectangle.overlap} but ignores the vertical location.
285
+ * @param rect2 The second rectangle
286
+ * @returns Whether the two rectangles overlap horizontally
287
+ */
288
+ horiz_overlap(rect2: Rectangle): boolean;
289
+
290
+ /**
291
+ * Find the intersection between the two rectangles
292
+ * @param src2 another {@link Mtk.Rectangle}
293
+ * @returns TRUE is some intersection exists and is not degenerate, FALSE otherwise.
294
+ */
295
+ intersect(src2: Rectangle): [boolean, Rectangle];
296
+
297
+ /**
298
+ * @param other
299
+ */
300
+ is_adjacent_to(other: Rectangle): boolean;
301
+
302
+ is_empty(): boolean;
303
+
304
+ /**
305
+ * Similar to {@link Rectangle.intersect} but doesn't provide
306
+ * the location of the intersection.
307
+ * @param rect2 The second rectangle
308
+ * @returns Whether the two rectangles overlap
309
+ */
310
+ overlap(rect2: Rectangle): boolean;
311
+
312
+ /**
313
+ * @param scale
314
+ * @param rounding_strategy
315
+ * @param dest
316
+ */
317
+ scale_double(scale: number, rounding_strategy: RoundingStrategy, dest: Rectangle): void;
318
+
319
+ /**
320
+ * @returns Return a graphene_rect_t created from `rect`
321
+ */
322
+ to_graphene_rect(): Graphene.Rect;
323
+
324
+ /**
325
+ * This function transforms the values in `rect` in order to compensate for
326
+ * `transform` applied to a `MetaMonitor`, making them match the viewport. Note
327
+ * that compensating implies that for a clockwise rotation of the `MetaMonitor`
328
+ * an anti-clockwise rotation has to be applied to `rect`.
329
+ * @param transform the {@link Mtk.MonitorTransform}
330
+ * @param width the width of the target space
331
+ * @param height the height of the target space
332
+ * @param dest the transformed {@link Mtk.Rectangle}
333
+ */
334
+ transform(transform: MonitorTransform, width: number, height: number, dest: Rectangle): void;
335
+
336
+ /**
337
+ * Computes the union of the two rectangles
338
+ * @param rect2 another {@link Mtk.Rectangle}
339
+ */
340
+ union(rect2: Rectangle): Rectangle;
341
+
342
+ /**
343
+ * Similar to {@link Rectangle.overlap} but ignores the horizontal location.
344
+ * @param rect2 The second rectangle
345
+ * @returns Whether the two rectangles overlap vertically
346
+ */
347
+ vert_overlap(rect2: Rectangle): boolean;
348
+ }
349
+
350
+
351
+ /**
352
+ * @gir-type Struct
353
+ */
354
+ abstract class Region {
355
+ static $gtype: GObject.GType<Region>;
356
+
357
+ // Static methods
358
+ static create(): Region;
359
+
360
+ /**
361
+ * @param rect
362
+ */
363
+ static create_rectangle(rect: Rectangle): Region;
364
+
365
+ /**
366
+ * @param rects
367
+ * @param n_rects
368
+ */
369
+ static create_rectangles(rects: Rectangle, n_rects: number): Region;
370
+
371
+ // Methods
372
+ /**
373
+ * @param transform
374
+ */
375
+ apply_matrix_transform_expand(transform: Graphene.Matrix): Region;
376
+
377
+ /**
378
+ * @param x
379
+ * @param y
380
+ */
381
+ contains_point(x: number, y: number): boolean;
382
+
383
+ /**
384
+ * @param rect
385
+ */
386
+ contains_rectangle(rect: Rectangle): RegionOverlap;
387
+
388
+ /**
389
+ * @returns A copy of the passed region
390
+ */
391
+ copy(): Region;
392
+
393
+ /**
394
+ * @param src_rect
395
+ * @param dst_width
396
+ * @param dst_height
397
+ */
398
+ crop_and_scale(src_rect: Graphene.Rect, dst_width: number, dst_height: number): Region;
399
+
400
+ /**
401
+ * @param scale
402
+ */
403
+ downscale(scale: number): Region;
404
+
405
+ /**
406
+ * @param other
407
+ */
408
+ equal(other: Region): boolean;
409
+
410
+ /**
411
+ * @param nth
412
+ * @param x1
413
+ * @param y1
414
+ * @param x2
415
+ * @param y2
416
+ */
417
+ get_box(nth: number, x1: number, y1: number, x2: number, y2: number): void;
418
+
419
+ get_extents(): Rectangle;
420
+
421
+ /**
422
+ * @param nth
423
+ */
424
+ get_rectangle(nth: number): Rectangle;
425
+
426
+ /**
427
+ * @param other
428
+ */
429
+ intersect(other: Region): void;
430
+
431
+ /**
432
+ * @param rect
433
+ */
434
+ intersect_rectangle(rect: Rectangle): void;
435
+
436
+ is_empty(): boolean;
437
+
438
+ num_rectangles(): number;
439
+
440
+ /**
441
+ * Increases the reference count
442
+ * @returns The region
443
+ */
444
+ ref(): Region;
445
+
446
+ /**
447
+ * @param scale
448
+ */
449
+ scale(scale: number): Region;
450
+
451
+ /**
452
+ * @param other
453
+ */
454
+ subtract(other: Region): void;
455
+
456
+ /**
457
+ * @param rect
458
+ */
459
+ subtract_rectangle(rect: Rectangle): void;
460
+
461
+ /**
462
+ * @param dx
463
+ * @param dy
464
+ */
465
+ translate(dx: number, dy: number): void;
466
+
467
+ /**
468
+ * @param other
469
+ */
470
+ union(other: Region): void;
471
+
472
+ /**
473
+ * @param rect
474
+ */
475
+ union_rectangle(rect: Rectangle): void;
476
+
477
+ unref(): void;
478
+ }
479
+
480
+
481
+ /**
482
+ * @gir-type Struct
483
+ */
484
+ class RegionBuilder {
485
+ static $gtype: GObject.GType<RegionBuilder>;
486
+
487
+ // Fields
488
+ n_levels: number;
489
+
490
+ // Methods
491
+ /**
492
+ * @param x
493
+ * @param y
494
+ * @param width
495
+ * @param height
496
+ */
497
+ add_rectangle(x: number, y: number, width: number, height: number): void;
498
+
499
+ finish(): Region;
500
+
501
+ init(): void;
502
+ }
503
+
504
+
505
+ /**
506
+ * MtkRegion is a yx banded region; sometimes its useful to iterate through
507
+ * such a region treating the start and end of each horizontal band in a distinct
508
+ * fashion.
509
+ *
510
+ * Usage:
511
+ *
512
+ * ```c
513
+ * MtkRegionIterator iter;
514
+ * for (mtk_region_iterator_init (&iter, region);
515
+ * !mtk_region_iterator_at_end (&iter);
516
+ * mtk_region_iterator_next (&iter))
517
+ * {
518
+ * [ Use iter.rectangle, iter.line_start, iter.line_end ]
519
+ * }
520
+ * ```
521
+ * @gir-type Struct
522
+ */
523
+ class RegionIterator {
524
+ static $gtype: GObject.GType<RegionIterator>;
525
+
526
+ // Fields
527
+ rectangle: Rectangle;
528
+
529
+ line_start: boolean;
530
+
531
+ line_end: boolean;
532
+
533
+ i: number;
534
+
535
+ // Methods
536
+ at_end(): boolean;
537
+
538
+ /**
539
+ * @param region
540
+ */
541
+ init(region: Region): void;
542
+
543
+ next(): void;
544
+ }
545
+
546
+
547
+ /**
548
+ * Name of the imported GIR library
549
+ * `see` https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
550
+ */
551
+ const __name__: string;
552
+
553
+ /**
554
+ * Version of the imported GIR library
555
+ * `see` https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
556
+ */
557
+ const __version__: string;
558
+ }
559
+
560
+ export default Mtk;
561
+
562
+ // END
package/mtk-18.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Mtk from 'gi://Mtk?version=18';
4
+ export default Mtk;
5
+
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@girs/mtk-18",
3
+ "version": "4.0.4",
4
+ "libraryVersion": "18.0.0",
5
+ "description": "GJS TypeScript type definitions for Mtk-18, generated from library version 18.0.0",
6
+ "type": "module",
7
+ "module": "mtk-18.js",
8
+ "main": "mtk-18.js",
9
+ "exports": {
10
+ "./ambient": {
11
+ "types": "./mtk-18-ambient.d.ts",
12
+ "import": "./mtk-18-ambient.js",
13
+ "default": "./mtk-18-ambient.js"
14
+ },
15
+ "./import": {
16
+ "types": "./mtk-18-import.d.ts",
17
+ "import": "./mtk-18-import.js",
18
+ "default": "./mtk-18-import.js"
19
+ },
20
+ "./mtk-18": {
21
+ "types": "./mtk-18.d.ts",
22
+ "import": "./mtk-18.js",
23
+ "default": "./mtk-18.js"
24
+ },
25
+ ".": {
26
+ "types": "./index.d.ts",
27
+ "import": "./index.js",
28
+ "default": "./index.js"
29
+ }
30
+ },
31
+ "scripts": {
32
+ "test": "tsc --project tsconfig.json"
33
+ },
34
+ "dependencies": {
35
+ "@girs/gjs": "^4.0.4",
36
+ "@girs/graphene-1.0": "^4.0.4",
37
+ "@girs/gobject-2.0": "^4.0.4",
38
+ "@girs/glib-2.0": "^4.0.4" },
39
+ "devDependencies": {
40
+ "typescript": "*"
41
+ },
42
+ "keywords": ["Gir", "TypeScript", "types", "GObject-Introspection", "GJS", "Mtk-18"],
43
+ "author": "ts-for-gir",
44
+ "license": "MIT",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/gjsify/types.git"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
51
+ },
52
+ "homepage": "https://github.com/gjsify/types/tree/main/mtk-18#readme"
53
+ }
54
+
55
+
package/tsconfig.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "compilerOptions": {
3
+ // General settings for code interpretation
4
+ "target": "ESNext",
5
+ "module": "NodeNext",
6
+ "lib": ["ESNext"],
7
+ "types": [],
8
+ "experimentalDecorators": true,
9
+ "moduleResolution": "NodeNext",
10
+ "noEmit": true,
11
+ "noEmitOnError": false,
12
+ "rootDir": ".",
13
+ // General settings for code generation
14
+ "removeComments": false,
15
+ "inlineSourceMap": false,
16
+ "inlineSources": false,
17
+ "newLine": "LF",
18
+ // Show diagnostics
19
+ "diagnostics": true,
20
+ "paths": {
21
+ "@girs/graphene-1.0": [
22
+ "../graphene-1.0/index.d.ts"
23
+ ],
24
+ "@girs/gobject-2.0": [
25
+ "../gobject-2.0/index.d.ts"
26
+ ],
27
+ "@girs/glib-2.0": [
28
+ "../glib-2.0/index.d.ts"
29
+ ],
30
+ "@girs/gjs": [
31
+ "../gjs/index.d.ts"
32
+ ]
33
+ }
34
+ },
35
+ "include": ["./mtk-18.d.ts"]
36
+ }
37
+
38
+
package/typedoc.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "entryPoints": ["./mtk-18.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Mtk-18",
5
+ "tsconfig": "./tsconfig.json",
6
+ "skipErrorChecking": true,
7
+ "highlightLanguages": ["typescript", "javascript", "c", "cpp", "xml", "bash", "json", "css"]
8
+ }
9
+