pareto-fountain-pen 0.1.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.
Files changed (51) hide show
  1. package/dist/generated/generic/resolve.d.ts +90 -0
  2. package/dist/generated/generic/resolve.js +259 -0
  3. package/dist/generated/implementation/schemas/block/migration_boilerplate.d.ts +7 -0
  4. package/dist/generated/implementation/schemas/block/migration_boilerplate.js +75 -0
  5. package/dist/generated/implementation/schemas/lines/migration_boilerplate.d.ts +3 -0
  6. package/dist/generated/implementation/schemas/lines/migration_boilerplate.js +48 -0
  7. package/dist/generated/implementation/schemas/semi_lines/migration_boilerplate.d.ts +3 -0
  8. package/dist/generated/implementation/schemas/semi_lines/migration_boilerplate.js +51 -0
  9. package/dist/generated/implementation/schemas/text/migration_boilerplate.d.ts +3 -0
  10. package/dist/generated/implementation/schemas/text/migration_boilerplate.js +48 -0
  11. package/dist/generated/interface/core/poormans_parser.d.ts +184 -0
  12. package/dist/generated/interface/core/poormans_parser.js +3 -0
  13. package/dist/generated/interface/core/resolved.d.ts +100 -0
  14. package/dist/generated/interface/core/resolved.js +3 -0
  15. package/dist/generated/interface/core/unresolved.d.ts +35 -0
  16. package/dist/generated/interface/core/unresolved.js +3 -0
  17. package/dist/generated/interface/schemas/block/migration_boilerplate.d.ts +134 -0
  18. package/dist/generated/interface/schemas/block/migration_boilerplate.js +3 -0
  19. package/dist/generated/interface/schemas/block/poormans_parser.d.ts +136 -0
  20. package/dist/generated/interface/schemas/block/poormans_parser.js +3 -0
  21. package/dist/generated/interface/schemas/block/resolved.d.ts +136 -0
  22. package/dist/generated/interface/schemas/block/resolved.js +3 -0
  23. package/dist/generated/interface/schemas/block/unresolved.d.ts +136 -0
  24. package/dist/generated/interface/schemas/block/unresolved.js +3 -0
  25. package/dist/generated/interface/schemas/lines/migration_boilerplate.d.ts +46 -0
  26. package/dist/generated/interface/schemas/lines/migration_boilerplate.js +3 -0
  27. package/dist/generated/interface/schemas/lines/poormans_parser.d.ts +39 -0
  28. package/dist/generated/interface/schemas/lines/poormans_parser.js +3 -0
  29. package/dist/generated/interface/schemas/lines/resolved.d.ts +39 -0
  30. package/dist/generated/interface/schemas/lines/resolved.js +3 -0
  31. package/dist/generated/interface/schemas/lines/unresolved.d.ts +39 -0
  32. package/dist/generated/interface/schemas/lines/unresolved.js +3 -0
  33. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.d.ts +46 -0
  34. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.js +3 -0
  35. package/dist/generated/interface/schemas/semi_lines/poormans_parser.d.ts +56 -0
  36. package/dist/generated/interface/schemas/semi_lines/poormans_parser.js +3 -0
  37. package/dist/generated/interface/schemas/semi_lines/resolved.d.ts +56 -0
  38. package/dist/generated/interface/schemas/semi_lines/resolved.js +3 -0
  39. package/dist/generated/interface/schemas/semi_lines/unresolved.d.ts +56 -0
  40. package/dist/generated/interface/schemas/semi_lines/unresolved.js +3 -0
  41. package/dist/generated/interface/schemas/text/migration_boilerplate.d.ts +46 -0
  42. package/dist/generated/interface/schemas/text/migration_boilerplate.js +3 -0
  43. package/dist/generated/interface/schemas/text/poormans_parser.d.ts +33 -0
  44. package/dist/generated/interface/schemas/text/poormans_parser.js +3 -0
  45. package/dist/generated/interface/schemas/text/resolved.d.ts +33 -0
  46. package/dist/generated/interface/schemas/text/resolved.js +3 -0
  47. package/dist/generated/interface/schemas/text/unresolved.d.ts +33 -0
  48. package/dist/generated/interface/schemas/text/unresolved.js +3 -0
  49. package/dist/globals.d.ts +24 -0
  50. package/dist/globals.js +2 -0
  51. package/package.json +55 -0
@@ -0,0 +1,136 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
3
+ export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block]>;
4
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>>;
5
+ export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
6
+ export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
7
+ export type _T_Lines = _i_core._T_List<null, {
8
+ readonly 'indentation': number;
9
+ readonly 'text': string;
10
+ }>;
11
+ export type Block = _T_Block;
12
+ export type Block_Part = _T_Block_Part;
13
+ export type Directory = _T_Directory;
14
+ export type Line = _T_Line;
15
+ export type Line_Part = _T_Line_Part;
16
+ export type Lines = _T_Lines;
17
+ export declare namespace _T_Block {
18
+ namespace L {
19
+ }
20
+ type L = _T_Block_Part;
21
+ }
22
+ export declare namespace _T_Block_Part {
23
+ namespace SG {
24
+ type line = string;
25
+ namespace nested_line {
26
+ }
27
+ type nested_line = _T_Line;
28
+ type nothing = null;
29
+ namespace sub_block {
30
+ }
31
+ type sub_block = _T_Block;
32
+ }
33
+ type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
34
+ }
35
+ export declare namespace _T_Directory {
36
+ namespace D {
37
+ namespace SG {
38
+ namespace directory {
39
+ }
40
+ type directory = _T_Directory;
41
+ namespace file {
42
+ }
43
+ type file = _T_Block;
44
+ }
45
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
46
+ }
47
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
48
+ }
49
+ export declare namespace _T_Line {
50
+ namespace L {
51
+ }
52
+ type L = _T_Line_Part;
53
+ }
54
+ export declare namespace _T_Line_Part {
55
+ namespace SG {
56
+ namespace indent {
57
+ }
58
+ type indent = _T_Block;
59
+ type nothing = null;
60
+ type snippet = string;
61
+ namespace sub_line {
62
+ }
63
+ type sub_line = _T_Line;
64
+ }
65
+ type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
66
+ }
67
+ export declare namespace _T_Lines {
68
+ namespace L {
69
+ type indentation = number;
70
+ type text = string;
71
+ }
72
+ type L = {
73
+ readonly 'indentation': number;
74
+ readonly 'text': string;
75
+ };
76
+ }
77
+ export declare namespace Block {
78
+ namespace L {
79
+ }
80
+ type L = _T_Block_Part;
81
+ }
82
+ export declare namespace Block_Part {
83
+ namespace SG {
84
+ type line = string;
85
+ namespace nested_line {
86
+ }
87
+ type nested_line = _T_Line;
88
+ type nothing = null;
89
+ namespace sub_block {
90
+ }
91
+ type sub_block = _T_Block;
92
+ }
93
+ type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
94
+ }
95
+ export declare namespace Directory {
96
+ namespace D {
97
+ namespace SG {
98
+ namespace directory {
99
+ }
100
+ type directory = _T_Directory;
101
+ namespace file {
102
+ }
103
+ type file = _T_Block;
104
+ }
105
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
106
+ }
107
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
108
+ }
109
+ export declare namespace Line {
110
+ namespace L {
111
+ }
112
+ type L = _T_Line_Part;
113
+ }
114
+ export declare namespace Line_Part {
115
+ namespace SG {
116
+ namespace indent {
117
+ }
118
+ type indent = _T_Block;
119
+ type nothing = null;
120
+ type snippet = string;
121
+ namespace sub_line {
122
+ }
123
+ type sub_line = _T_Line;
124
+ }
125
+ type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
126
+ }
127
+ export declare namespace Lines {
128
+ namespace L {
129
+ type indentation = number;
130
+ type text = string;
131
+ }
132
+ type L = {
133
+ readonly 'indentation': number;
134
+ readonly 'text': string;
135
+ };
136
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2Jsb2NrL3Jlc29sdmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,136 @@
1
+ import * as _i_core from "../../core/unresolved";
2
+ export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
3
+ export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block]>;
4
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>>;
5
+ export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
6
+ export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
7
+ export type _T_Lines = _i_core._T_List<null, {
8
+ readonly 'indentation': number;
9
+ readonly 'text': string;
10
+ }>;
11
+ export type Block = _T_Block;
12
+ export type Block_Part = _T_Block_Part;
13
+ export type Directory = _T_Directory;
14
+ export type Line = _T_Line;
15
+ export type Line_Part = _T_Line_Part;
16
+ export type Lines = _T_Lines;
17
+ export declare namespace _T_Block {
18
+ namespace L {
19
+ }
20
+ type L = _T_Block_Part;
21
+ }
22
+ export declare namespace _T_Block_Part {
23
+ namespace SG {
24
+ type line = string;
25
+ namespace nested_line {
26
+ }
27
+ type nested_line = _T_Line;
28
+ type nothing = null;
29
+ namespace sub_block {
30
+ }
31
+ type sub_block = _T_Block;
32
+ }
33
+ type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
34
+ }
35
+ export declare namespace _T_Directory {
36
+ namespace D {
37
+ namespace SG {
38
+ namespace directory {
39
+ }
40
+ type directory = _T_Directory;
41
+ namespace file {
42
+ }
43
+ type file = _T_Block;
44
+ }
45
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
46
+ }
47
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
48
+ }
49
+ export declare namespace _T_Line {
50
+ namespace L {
51
+ }
52
+ type L = _T_Line_Part;
53
+ }
54
+ export declare namespace _T_Line_Part {
55
+ namespace SG {
56
+ namespace indent {
57
+ }
58
+ type indent = _T_Block;
59
+ type nothing = null;
60
+ type snippet = string;
61
+ namespace sub_line {
62
+ }
63
+ type sub_line = _T_Line;
64
+ }
65
+ type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
66
+ }
67
+ export declare namespace _T_Lines {
68
+ namespace L {
69
+ type indentation = number;
70
+ type text = string;
71
+ }
72
+ type L = {
73
+ readonly 'indentation': number;
74
+ readonly 'text': string;
75
+ };
76
+ }
77
+ export declare namespace Block {
78
+ namespace L {
79
+ }
80
+ type L = _T_Block_Part;
81
+ }
82
+ export declare namespace Block_Part {
83
+ namespace SG {
84
+ type line = string;
85
+ namespace nested_line {
86
+ }
87
+ type nested_line = _T_Line;
88
+ type nothing = null;
89
+ namespace sub_block {
90
+ }
91
+ type sub_block = _T_Block;
92
+ }
93
+ type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
94
+ }
95
+ export declare namespace Directory {
96
+ namespace D {
97
+ namespace SG {
98
+ namespace directory {
99
+ }
100
+ type directory = _T_Directory;
101
+ namespace file {
102
+ }
103
+ type file = _T_Block;
104
+ }
105
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
106
+ }
107
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
108
+ }
109
+ export declare namespace Line {
110
+ namespace L {
111
+ }
112
+ type L = _T_Line_Part;
113
+ }
114
+ export declare namespace Line_Part {
115
+ namespace SG {
116
+ namespace indent {
117
+ }
118
+ type indent = _T_Block;
119
+ type nothing = null;
120
+ type snippet = string;
121
+ namespace sub_line {
122
+ }
123
+ type sub_line = _T_Line;
124
+ }
125
+ type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
126
+ }
127
+ export declare namespace Lines {
128
+ namespace L {
129
+ type indentation = number;
130
+ type text = string;
131
+ }
132
+ type L = {
133
+ readonly 'indentation': number;
134
+ readonly 'text': string;
135
+ };
136
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5yZXNvbHZlZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYmxvY2svdW5yZXNvbHZlZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,46 @@
1
+ import * as _i_in from "./resolved";
2
+ import * as _i_out from "./unresolved";
3
+ export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
+ export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
+ export type Directory = _T_Directory;
6
+ export type Lines = _T_Lines;
7
+ export declare namespace _T_Directory {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Directory;
11
+ namespace PARAMS {
12
+ }
13
+ namespace RESULT {
14
+ }
15
+ type RESULT = _i_out._T_Directory;
16
+ }
17
+ export declare namespace _T_Lines {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Lines;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ }
25
+ type RESULT = _i_out._T_Lines;
26
+ }
27
+ export declare namespace Directory {
28
+ namespace CONTEXT {
29
+ }
30
+ type CONTEXT = _i_in._T_Directory;
31
+ namespace PARAMS {
32
+ }
33
+ namespace RESULT {
34
+ }
35
+ type RESULT = _i_out._T_Directory;
36
+ }
37
+ export declare namespace Lines {
38
+ namespace CONTEXT {
39
+ }
40
+ type CONTEXT = _i_in._T_Lines;
41
+ namespace PARAMS {
42
+ }
43
+ namespace RESULT {
44
+ }
45
+ type RESULT = _i_out._T_Lines;
46
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9saW5lcy9taWdyYXRpb25fYm9pbGVycGxhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,39 @@
1
+ import * as _i_core from "../../core/poormans_parser";
2
+ export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
+ export type _T_Lines<G_Source> = _i_core._T_List<G_Source, string>;
4
+ export type Directory<G_Source> = _T_Directory<G_Source>;
5
+ export type Lines<G_Source> = _T_Lines<G_Source>;
6
+ export declare namespace _T_Directory {
7
+ namespace D {
8
+ namespace SG {
9
+ namespace directory {
10
+ }
11
+ type directory<G_Source> = _T_Directory<G_Source>;
12
+ namespace file {
13
+ }
14
+ type file<G_Source> = _T_Lines<G_Source>;
15
+ }
16
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
17
+ }
18
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
19
+ }
20
+ export declare namespace _T_Lines {
21
+ type L<G_Source> = string;
22
+ }
23
+ export declare namespace Directory {
24
+ namespace D {
25
+ namespace SG {
26
+ namespace directory {
27
+ }
28
+ type directory<G_Source> = _T_Directory<G_Source>;
29
+ namespace file {
30
+ }
31
+ type file<G_Source> = _T_Lines<G_Source>;
32
+ }
33
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
34
+ }
35
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
36
+ }
37
+ export declare namespace Lines {
38
+ type L<G_Source> = string;
39
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9vcm1hbnNfcGFyc2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9saW5lcy9wb29ybWFuc19wYXJzZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,39 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
+ export type _T_Lines = _i_core._T_List<null, string>;
4
+ export type Directory = _T_Directory;
5
+ export type Lines = _T_Lines;
6
+ export declare namespace _T_Directory {
7
+ namespace D {
8
+ namespace SG {
9
+ namespace directory {
10
+ }
11
+ type directory = _T_Directory;
12
+ namespace file {
13
+ }
14
+ type file = _T_Lines;
15
+ }
16
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
17
+ }
18
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
19
+ }
20
+ export declare namespace _T_Lines {
21
+ type L = string;
22
+ }
23
+ export declare namespace Directory {
24
+ namespace D {
25
+ namespace SG {
26
+ namespace directory {
27
+ }
28
+ type directory = _T_Directory;
29
+ namespace file {
30
+ }
31
+ type file = _T_Lines;
32
+ }
33
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
34
+ }
35
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
36
+ }
37
+ export declare namespace Lines {
38
+ type L = string;
39
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2xpbmVzL3Jlc29sdmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,39 @@
1
+ import * as _i_core from "../../core/unresolved";
2
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
+ export type _T_Lines = _i_core._T_List<null, string>;
4
+ export type Directory = _T_Directory;
5
+ export type Lines = _T_Lines;
6
+ export declare namespace _T_Directory {
7
+ namespace D {
8
+ namespace SG {
9
+ namespace directory {
10
+ }
11
+ type directory = _T_Directory;
12
+ namespace file {
13
+ }
14
+ type file = _T_Lines;
15
+ }
16
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
17
+ }
18
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
19
+ }
20
+ export declare namespace _T_Lines {
21
+ type L = string;
22
+ }
23
+ export declare namespace Directory {
24
+ namespace D {
25
+ namespace SG {
26
+ namespace directory {
27
+ }
28
+ type directory = _T_Directory;
29
+ namespace file {
30
+ }
31
+ type file = _T_Lines;
32
+ }
33
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
34
+ }
35
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
36
+ }
37
+ export declare namespace Lines {
38
+ type L = string;
39
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5yZXNvbHZlZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvbGluZXMvdW5yZXNvbHZlZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,46 @@
1
+ import * as _i_in from "./resolved";
2
+ import * as _i_out from "./unresolved";
3
+ export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
+ export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
+ export type Directory = _T_Directory;
6
+ export type Lines = _T_Lines;
7
+ export declare namespace _T_Directory {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Directory;
11
+ namespace PARAMS {
12
+ }
13
+ namespace RESULT {
14
+ }
15
+ type RESULT = _i_out._T_Directory;
16
+ }
17
+ export declare namespace _T_Lines {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Lines;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ }
25
+ type RESULT = _i_out._T_Lines;
26
+ }
27
+ export declare namespace Directory {
28
+ namespace CONTEXT {
29
+ }
30
+ type CONTEXT = _i_in._T_Directory;
31
+ namespace PARAMS {
32
+ }
33
+ namespace RESULT {
34
+ }
35
+ type RESULT = _i_out._T_Directory;
36
+ }
37
+ export declare namespace Lines {
38
+ namespace CONTEXT {
39
+ }
40
+ type CONTEXT = _i_in._T_Lines;
41
+ namespace PARAMS {
42
+ }
43
+ namespace RESULT {
44
+ }
45
+ type RESULT = _i_out._T_Lines;
46
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9zZW1pX2xpbmVzL21pZ3JhdGlvbl9ib2lsZXJwbGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,56 @@
1
+ import * as _i_core from "../../core/poormans_parser";
2
+ export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
+ export type _T_Lines<G_Source> = _i_core._T_List<G_Source, {
4
+ readonly 'indentation': number;
5
+ readonly 'text': string;
6
+ }>;
7
+ export type Directory<G_Source> = _T_Directory<G_Source>;
8
+ export type Lines<G_Source> = _T_Lines<G_Source>;
9
+ export declare namespace _T_Directory {
10
+ namespace D {
11
+ namespace SG {
12
+ namespace directory {
13
+ }
14
+ type directory<G_Source> = _T_Directory<G_Source>;
15
+ namespace file {
16
+ }
17
+ type file<G_Source> = _T_Lines<G_Source>;
18
+ }
19
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
20
+ }
21
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
22
+ }
23
+ export declare namespace _T_Lines {
24
+ namespace L {
25
+ type indentation<G_Source> = number;
26
+ type text<G_Source> = string;
27
+ }
28
+ type L<G_Source> = {
29
+ readonly 'indentation': number;
30
+ readonly 'text': string;
31
+ };
32
+ }
33
+ export declare namespace Directory {
34
+ namespace D {
35
+ namespace SG {
36
+ namespace directory {
37
+ }
38
+ type directory<G_Source> = _T_Directory<G_Source>;
39
+ namespace file {
40
+ }
41
+ type file<G_Source> = _T_Lines<G_Source>;
42
+ }
43
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
44
+ }
45
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
46
+ }
47
+ export declare namespace Lines {
48
+ namespace L {
49
+ type indentation<G_Source> = number;
50
+ type text<G_Source> = string;
51
+ }
52
+ type L<G_Source> = {
53
+ readonly 'indentation': number;
54
+ readonly 'text': string;
55
+ };
56
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9vcm1hbnNfcGFyc2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9zZW1pX2xpbmVzL3Bvb3JtYW5zX3BhcnNlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,56 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
+ export type _T_Lines = _i_core._T_List<null, {
4
+ readonly 'indentation': number;
5
+ readonly 'text': string;
6
+ }>;
7
+ export type Directory = _T_Directory;
8
+ export type Lines = _T_Lines;
9
+ export declare namespace _T_Directory {
10
+ namespace D {
11
+ namespace SG {
12
+ namespace directory {
13
+ }
14
+ type directory = _T_Directory;
15
+ namespace file {
16
+ }
17
+ type file = _T_Lines;
18
+ }
19
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
20
+ }
21
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
22
+ }
23
+ export declare namespace _T_Lines {
24
+ namespace L {
25
+ type indentation = number;
26
+ type text = string;
27
+ }
28
+ type L = {
29
+ readonly 'indentation': number;
30
+ readonly 'text': string;
31
+ };
32
+ }
33
+ export declare namespace Directory {
34
+ namespace D {
35
+ namespace SG {
36
+ namespace directory {
37
+ }
38
+ type directory = _T_Directory;
39
+ namespace file {
40
+ }
41
+ type file = _T_Lines;
42
+ }
43
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
44
+ }
45
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
46
+ }
47
+ export declare namespace Lines {
48
+ namespace L {
49
+ type indentation = number;
50
+ type text = string;
51
+ }
52
+ type L = {
53
+ readonly 'indentation': number;
54
+ readonly 'text': string;
55
+ };
56
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL3NlbWlfbGluZXMvcmVzb2x2ZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9