fossekall-interface 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.
@@ -0,0 +1,4 @@
1
+ export declare const EcuTestObject: {
2
+ name: string;
3
+ description: string;
4
+ };
@@ -0,0 +1,4 @@
1
+ export const EcuTestObject = {
2
+ name: "Test object",
3
+ description: "This is a test object for the ECU module.",
4
+ };
@@ -0,0 +1,4 @@
1
+ export declare const FcTestObject: {
2
+ name: string;
3
+ description: string;
4
+ };
@@ -0,0 +1,4 @@
1
+ export const FcTestObject = {
2
+ name: "Test object",
3
+ description: "This is a test object for the FC module.",
4
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./fc/anothertest";
2
+ export * from "./ecu/test";
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from "./fc/anothertest";
2
+ export * from "./ecu/test";
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "fossekall-interface",
3
+ "version": "0.1.0",
4
+ "description": "API contracts between client and server (rocket and GUI)",
5
+ "license": "ISC",
6
+ "author": "Propulse",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "test": "echo \"Error: no test specified\" && exit 1",
15
+ "build": "tsc -p tsconfig.json",
16
+ "prepack": "npm run build"
17
+ },
18
+ "devDependencies": {
19
+ "typescript": "^5.9.3"
20
+ }
21
+ }