agnostics 0.0.1

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 (68) hide show
  1. package/README.md +3 -0
  2. package/lib/helpers/_Express.js +30 -0
  3. package/lib/helpers/_Parsers.js +73 -0
  4. package/lib/helpers/_Window.js +0 -0
  5. package/lib/helpers/_Yargs.js +328 -0
  6. package/lib/helpers/index.js +9 -0
  7. package/lib/index.js +11 -0
  8. package/lib/inputs/_Callers.js +122 -0
  9. package/lib/inputs/_Checker.js +3 -0
  10. package/lib/inputs/_Native.js +223 -0
  11. package/lib/inputs/_Types.js +112 -0
  12. package/lib/inputs/index.js +10 -0
  13. package/lib/logger/_ASCII.js +39 -0
  14. package/lib/logger/_Defs.js +55 -0
  15. package/lib/logger/_Logger.js +159 -0
  16. package/lib/logger/_Settings.js +52 -0
  17. package/lib/logger/_System.js +191 -0
  18. package/lib/logger/chars.js +730 -0
  19. package/lib/logger/index.js +5 -0
  20. package/lib/schema/_Schema.js +33 -0
  21. package/lib/schema/index.js +16 -0
  22. package/lib/specification/_Properties.js +144 -0
  23. package/lib/specification/index.js +9 -0
  24. package/package.json +32 -0
  25. package/types/helpers/_Express.d.ts +2 -0
  26. package/types/helpers/_Express.d.ts.map +1 -0
  27. package/types/helpers/_Parsers.d.ts +2 -0
  28. package/types/helpers/_Parsers.d.ts.map +1 -0
  29. package/types/helpers/_Window.d.ts +2 -0
  30. package/types/helpers/_Window.d.ts.map +1 -0
  31. package/types/helpers/_Yargs.d.ts +44 -0
  32. package/types/helpers/_Yargs.d.ts.map +1 -0
  33. package/types/helpers/index.d.ts +2 -0
  34. package/types/helpers/index.d.ts.map +1 -0
  35. package/types/index.d.ts +4 -0
  36. package/types/index.d.ts.map +1 -0
  37. package/types/inputs/_Callers.d.ts +14 -0
  38. package/types/inputs/_Callers.d.ts.map +1 -0
  39. package/types/inputs/_Checker.d.ts +2 -0
  40. package/types/inputs/_Checker.d.ts.map +1 -0
  41. package/types/inputs/_Native.d.ts +212 -0
  42. package/types/inputs/_Native.d.ts.map +1 -0
  43. package/types/inputs/_Types.d.ts +34 -0
  44. package/types/inputs/_Types.d.ts.map +1 -0
  45. package/types/inputs/index.d.ts +3 -0
  46. package/types/inputs/index.d.ts.map +1 -0
  47. package/types/logger/_ASCII.d.ts +2 -0
  48. package/types/logger/_ASCII.d.ts.map +1 -0
  49. package/types/logger/_Defs.d.ts +54 -0
  50. package/types/logger/_Defs.d.ts.map +1 -0
  51. package/types/logger/_Logger.d.ts +5 -0
  52. package/types/logger/_Logger.d.ts.map +1 -0
  53. package/types/logger/_Settings.d.ts +24 -0
  54. package/types/logger/_Settings.d.ts.map +1 -0
  55. package/types/logger/_System.d.ts +10 -0
  56. package/types/logger/_System.d.ts.map +1 -0
  57. package/types/logger/chars.d.ts +93 -0
  58. package/types/logger/chars.d.ts.map +1 -0
  59. package/types/logger/index.d.ts +6 -0
  60. package/types/logger/index.d.ts.map +1 -0
  61. package/types/schema/_Schema.d.ts +11 -0
  62. package/types/schema/_Schema.d.ts.map +1 -0
  63. package/types/schema/index.d.ts +3 -0
  64. package/types/schema/index.d.ts.map +1 -0
  65. package/types/specification/_Properties.d.ts +158 -0
  66. package/types/specification/_Properties.d.ts.map +1 -0
  67. package/types/specification/index.d.ts +2 -0
  68. package/types/specification/index.d.ts.map +1 -0
@@ -0,0 +1,54 @@
1
+ export function Timestamp(from?: number, to?: number, space?: string): string;
2
+ export namespace ANSI {
3
+ let reset: string;
4
+ let black: string;
5
+ let gray: string;
6
+ let red: string;
7
+ let green: string;
8
+ let yellow: string;
9
+ let blue: string;
10
+ let magenta: string;
11
+ let cyan: string;
12
+ let white: string;
13
+ }
14
+ export namespace ANSIDark {
15
+ let black_1: string;
16
+ export { black_1 as black };
17
+ let gray_1: string;
18
+ export { gray_1 as gray };
19
+ let red_1: string;
20
+ export { red_1 as red };
21
+ let green_1: string;
22
+ export { green_1 as green };
23
+ let yellow_1: string;
24
+ export { yellow_1 as yellow };
25
+ let blue_1: string;
26
+ export { blue_1 as blue };
27
+ let magenta_1: string;
28
+ export { magenta_1 as magenta };
29
+ let cyan_1: string;
30
+ export { cyan_1 as cyan };
31
+ let white_1: string;
32
+ export { white_1 as white };
33
+ }
34
+ export namespace ANSILight {
35
+ let white_2: string;
36
+ export { white_2 as white };
37
+ let gray_2: string;
38
+ export { gray_2 as gray };
39
+ let red_2: string;
40
+ export { red_2 as red };
41
+ let green_2: string;
42
+ export { green_2 as green };
43
+ let yellow_2: string;
44
+ export { yellow_2 as yellow };
45
+ let blue_2: string;
46
+ export { blue_2 as blue };
47
+ let magenta_2: string;
48
+ export { magenta_2 as magenta };
49
+ let cyan_2: string;
50
+ export { cyan_2 as cyan };
51
+ let black_2: string;
52
+ export { black_2 as black };
53
+ }
54
+ //# sourceMappingURL=_Defs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_Defs.d.ts","sourceRoot":"","sources":["../../lib/logger/_Defs.js"],"names":[],"mappings":"AAQO,8EAMN"}
@@ -0,0 +1,5 @@
1
+ export function ExtractMetaName(url: any): any;
2
+ export function CreateLogger(filename: any, overrides?: {}): {
3
+ [x: string]: (...args: any[]) => void;
4
+ };
5
+ //# sourceMappingURL=_Logger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_Logger.d.ts","sourceRoot":"","sources":["../../lib/logger/_Logger.js"],"names":[],"mappings":"AAWA,+CASC;AA2DD;;EA+EC"}
@@ -0,0 +1,24 @@
1
+ export namespace Settings {
2
+ let verbose: boolean;
3
+ let info: boolean;
4
+ let timestamp: any;
5
+ let infoPrepend: string;
6
+ let debugPrepend: string;
7
+ let warnPrepend: string;
8
+ let errorPrepend: string;
9
+ let successPrepend: string;
10
+ let infoName: string;
11
+ let debugName: string;
12
+ let warnName: string;
13
+ let errorName: string;
14
+ let successName: string;
15
+ let infoColor: string;
16
+ let debugColor: string;
17
+ let warnColor: string;
18
+ let errorColor: string;
19
+ let successColor: string;
20
+ let onCrash: any;
21
+ let onExit: any;
22
+ let filename: string;
23
+ }
24
+ //# sourceMappingURL=_Settings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_Settings.d.ts","sourceRoot":"","sources":["../../lib/logger/_Settings.js"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
1
+ export function SystemLog(overrides?: {}): Promise<any>;
2
+ export function DownloadableLog(filename: any, buffer: any): {
3
+ buffer: any;
4
+ filename: any;
5
+ content: string;
6
+ blob: Blob;
7
+ url: string;
8
+ download: () => void;
9
+ };
10
+ //# sourceMappingURL=_System.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_System.d.ts","sourceRoot":"","sources":["../../lib/logger/_System.js"],"names":[],"mappings":"AA0BA,wDAsIC;AAEM;;;;;;;EAyBN"}
@@ -0,0 +1,93 @@
1
+ declare const _default: {
2
+ ' ': string[];
3
+ A: string[];
4
+ B: string[];
5
+ C: string[];
6
+ D: string[];
7
+ E: string[];
8
+ F: string[];
9
+ G: string[];
10
+ H: string[];
11
+ I: string[];
12
+ J: string[];
13
+ K: string[];
14
+ L: string[];
15
+ M: string[];
16
+ N: string[];
17
+ O: string[];
18
+ P: string[];
19
+ Q: string[];
20
+ R: string[];
21
+ S: string[];
22
+ T: string[];
23
+ U: string[];
24
+ V: string[];
25
+ W: string[];
26
+ X: string[];
27
+ Y: string[];
28
+ Z: string[];
29
+ a: string[];
30
+ b: string[];
31
+ c: string[];
32
+ d: string[];
33
+ e: string[];
34
+ f: string[];
35
+ g: string[];
36
+ h: string[];
37
+ i: string[];
38
+ j: string[];
39
+ k: string[];
40
+ l: string[];
41
+ m: string[];
42
+ n: string[];
43
+ o: string[];
44
+ p: string[];
45
+ q: string[];
46
+ r: string[];
47
+ s: string[];
48
+ t: string[];
49
+ u: string[];
50
+ v: string[];
51
+ w: string[];
52
+ x: string[];
53
+ y: string[];
54
+ z: string[];
55
+ '0': string[];
56
+ '1': string[];
57
+ '2': string[];
58
+ '3': string[];
59
+ '4': string[];
60
+ '5': string[];
61
+ '6': string[];
62
+ '7': string[];
63
+ '8': string[];
64
+ '9': string[];
65
+ '!': string[];
66
+ '.': string[];
67
+ ',': string[];
68
+ '?': string[];
69
+ smiley: string[];
70
+ '%': string[];
71
+ '\u2588': string[];
72
+ _: string[];
73
+ '-': string[];
74
+ ';': string[];
75
+ '`': string[];
76
+ '=': string[];
77
+ ':': string[];
78
+ '<': string[];
79
+ '>': string[];
80
+ '~': string[];
81
+ '*': string[];
82
+ '/': string[];
83
+ '\'': string[];
84
+ '"': string[];
85
+ '(': string[];
86
+ ')': string[];
87
+ '}': string[];
88
+ '[': string[];
89
+ '+': string[];
90
+ null: string[];
91
+ };
92
+ export default _default;
93
+ //# sourceMappingURL=chars.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chars.d.ts","sourceRoot":"","sources":["../../lib/logger/chars.js"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export * from "./_Defs.js";
2
+ export * from "./_Settings.js";
3
+ export * from "./_Logger.js";
4
+ export * from "./_System.js";
5
+ export * from "./_ASCII.js";
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/logger/index.js"],"names":[],"mappings":""}
@@ -0,0 +1,11 @@
1
+ export class Schema {
2
+ constructor(properties?: any);
3
+ $data: {};
4
+ }
5
+ export class Yargs {
6
+ constructor(positionals?: {}, options?: {});
7
+ $positionals: {};
8
+ $options: {};
9
+ run(): void;
10
+ }
11
+ //# sourceMappingURL=_Schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_Schema.d.ts","sourceRoot":"","sources":["../../lib/schema/_Schema.js"],"names":[],"mappings":"AAOA;IAKC,8BAEC;IAJD,UAAU;CAKV;AAED;IAKC,4CAKC;IARD,iBAAiB;IACjB,aAAa;IASb,YAEC;CACD"}
@@ -0,0 +1,3 @@
1
+ export default library;
2
+ declare const library: any;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/schema/index.js"],"names":[],"mappings":";AAOA,2BAKC"}
@@ -0,0 +1,158 @@
1
+ export namespace Properties {
2
+ export namespace type {
3
+ let description: string;
4
+ let matches: string[];
5
+ }
6
+ export namespace subtype {
7
+ let description_1: string;
8
+ export { description_1 as description };
9
+ let matches_1: string[];
10
+ export { matches_1 as matches };
11
+ }
12
+ export namespace index {
13
+ let description_2: string;
14
+ export { description_2 as description };
15
+ let matches_2: string[];
16
+ export { matches_2 as matches };
17
+ }
18
+ export namespace key {
19
+ let description_3: string;
20
+ export { description_3 as description };
21
+ let matches_3: string[];
22
+ export { matches_3 as matches };
23
+ }
24
+ export namespace label {
25
+ let description_4: string;
26
+ export { description_4 as description };
27
+ let matches_4: string[];
28
+ export { matches_4 as matches };
29
+ }
30
+ export namespace description_5 {
31
+ let description_6: string;
32
+ export { description_6 as description };
33
+ let matches_5: string[];
34
+ export { matches_5 as matches };
35
+ }
36
+ export { description_5 as description };
37
+ namespace _default {
38
+ let description_7: string;
39
+ export { description_7 as description };
40
+ let matches_6: string[];
41
+ export { matches_6 as matches };
42
+ }
43
+ export { _default as default };
44
+ export namespace gui {
45
+ let description_8: string;
46
+ export { description_8 as description };
47
+ let matches_7: string[];
48
+ export { matches_7 as matches };
49
+ }
50
+ export namespace classname {
51
+ let description_9: string;
52
+ export { description_9 as description };
53
+ let matches_8: string[];
54
+ export { matches_8 as matches };
55
+ }
56
+ export namespace required {
57
+ let description_10: string;
58
+ export { description_10 as description };
59
+ let matches_9: string[];
60
+ export { matches_9 as matches };
61
+ }
62
+ export namespace disabled {
63
+ let description_11: string;
64
+ export { description_11 as description };
65
+ let matches_10: string[];
66
+ export { matches_10 as matches };
67
+ }
68
+ export namespace readonly {
69
+ let description_12: string;
70
+ export { description_12 as description };
71
+ let matches_11: string[];
72
+ export { matches_11 as matches };
73
+ }
74
+ export namespace oncheck {
75
+ let description_13: string;
76
+ export { description_13 as description };
77
+ let matches_12: string[];
78
+ export { matches_12 as matches };
79
+ }
80
+ export namespace onupdate {
81
+ let description_14: string;
82
+ export { description_14 as description };
83
+ let matches_13: string[];
84
+ export { matches_13 as matches };
85
+ }
86
+ export namespace properties {
87
+ let description_15: string;
88
+ export { description_15 as description };
89
+ let matches_14: string[];
90
+ export { matches_14 as matches };
91
+ }
92
+ export namespace items {
93
+ let description_16: string;
94
+ export { description_16 as description };
95
+ let matches_15: string[];
96
+ export { matches_15 as matches };
97
+ }
98
+ export namespace _enum {
99
+ let description_17: string;
100
+ export { description_17 as description };
101
+ let matches_16: string[];
102
+ export { matches_16 as matches };
103
+ }
104
+ export { _enum as enum };
105
+ export namespace pattern {
106
+ let description_18: string;
107
+ export { description_18 as description };
108
+ let matches_17: string[];
109
+ export { matches_17 as matches };
110
+ }
111
+ export namespace step {
112
+ let description_19: string;
113
+ export { description_19 as description };
114
+ let matches_18: string[];
115
+ export { matches_18 as matches };
116
+ }
117
+ export namespace unit {
118
+ let description_20: string;
119
+ export { description_20 as description };
120
+ let matches_19: string[];
121
+ export { matches_19 as matches };
122
+ }
123
+ export namespace min {
124
+ let description_21: string;
125
+ export { description_21 as description };
126
+ let matches_20: string[];
127
+ export { matches_20 as matches };
128
+ }
129
+ export namespace max {
130
+ let description_22: string;
131
+ export { description_22 as description };
132
+ let matches_21: string[];
133
+ export { matches_21 as matches };
134
+ }
135
+ export namespace placeholder {
136
+ let description_23: string;
137
+ export { description_23 as description };
138
+ let matches_22: string[];
139
+ export { matches_22 as matches };
140
+ }
141
+ export namespace accept {
142
+ let description_24: string;
143
+ export { description_24 as description };
144
+ let matches_23: string[];
145
+ export { matches_23 as matches };
146
+ }
147
+ export namespace size {
148
+ let description_25: string;
149
+ export { description_25 as description };
150
+ let matches_24: string[];
151
+ export { matches_24 as matches };
152
+ }
153
+ export namespace misc {
154
+ let description_26: string;
155
+ export { description_26 as description };
156
+ }
157
+ }
158
+ //# sourceMappingURL=_Properties.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_Properties.d.ts","sourceRoot":"","sources":["../../lib/specification/_Properties.js"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from "./_Properties.js";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/specification/index.js"],"names":[],"mappings":""}