pareto-application-api 0.1.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.
- package/dist/globals.d.ts +29 -0
- package/dist/globals.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/dist/interface/data/main.d.ts +7 -0
- package/dist/interface/data/main.js +2 -0
- package/dist/interface/resources.d.ts +8 -0
- package/dist/interface/resources.js +3 -0
- package/package.json +20 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
declare global {
|
|
3
|
+
interface Array<T> {
|
|
4
|
+
[n: number]: T;
|
|
5
|
+
length: number;
|
|
6
|
+
readonly __state: true;
|
|
7
|
+
}
|
|
8
|
+
interface Boolean {
|
|
9
|
+
}
|
|
10
|
+
interface CallableFunction {
|
|
11
|
+
}
|
|
12
|
+
interface Function {
|
|
13
|
+
(...args: unknown[]): unknown;
|
|
14
|
+
}
|
|
15
|
+
interface IArguments {
|
|
16
|
+
}
|
|
17
|
+
interface NewableFunction {
|
|
18
|
+
}
|
|
19
|
+
interface Number {
|
|
20
|
+
}
|
|
21
|
+
interface Object {
|
|
22
|
+
}
|
|
23
|
+
interface RegExp {
|
|
24
|
+
}
|
|
25
|
+
interface String {
|
|
26
|
+
}
|
|
27
|
+
interface Promise<T> {
|
|
28
|
+
}
|
|
29
|
+
}
|
package/dist/globals.js
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const dont_import_the_root_of_this_package_but_the_specific_file_or_files_needed = 42;
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const dont_import_the_root_of_this_package_but_the_specific_file_or_files_needed = 42;
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLE1BQU0sMEVBQTBFLEdBQUcsRUFBRSxDQUFBIn0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import * as p_ from 'pareto-core/interface/data';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZGF0YS9tYWluLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxFQUFFLE1BQU0sNEJBQTRCLENBQUEifQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as p_ci from 'pareto-core/interface/command';
|
|
2
|
+
import * as d_main from "./data/main.js";
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb3VyY2VzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2ludGVyZmFjZS9yZXNvdXJjZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxLQUFLLElBQUksTUFBTSwrQkFBK0IsQ0FBQTtBQUVyRCxPQUFPLEtBQUssTUFBTSxNQUFNLGdCQUFnQixDQUFBIn0=
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pareto-application-api",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"author": "Corno",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"description": "A library providing a signature for the 'main' command",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./*": {
|
|
10
|
+
"types": "./dist/*.d.ts",
|
|
11
|
+
"default": "./dist/*.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"pareto-core": "^0.1.0"
|
|
19
|
+
}
|
|
20
|
+
}
|