Skip to content

Commit 6751aeb

Browse files
committed
Define addons for NodeJS, Python and Go
1 parent b428db6 commit 6751aeb

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

.eslintrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"plugin:@typescript-eslint/recommended"
77
],
88
"rules": {
9-
"object-curly-spacing": ["error", "always"]
9+
"object-curly-spacing": ["error", "always"],
10+
"@typescript-eslint/no-empty-interface": ["off"]
1011
}
11-
}
12+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hawk.types",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "TypeScript definitions for Hawk",
55
"types": "build/index.d.ts",
66
"main": "build/index.js",

src/base/event/addons/go.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* This interface represents data that can be additionally collected by Go Catcher
3+
*/
4+
export interface GoAddons {}

src/base/event/addons/index.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
import { JavaScriptAddons, WindowData, VueIntegrationAddons } from './javascript';
22
import { PhpAddons } from './php';
3+
import { NodeJSAddons } from './nodejs';
4+
import { GoAddons } from './go';
5+
import { PythonAddons } from './python';
36

47
/**
58
* Union Type describing all catcher-specific additional data
69
*/
710
type EventAddons =
811
| JavaScriptAddons
912
| PhpAddons
13+
| NodeJSAddons
14+
| GoAddons
15+
| PythonAddons
1016
;
1117

1218
export {
13-
JavaScriptAddons,
1419
WindowData,
1520
VueIntegrationAddons,
16-
PhpAddons,
1721
EventAddons,
22+
JavaScriptAddons,
23+
PhpAddons,
24+
NodeJSAddons,
25+
GoAddons,
26+
PythonAddons
1827
}

src/base/event/addons/nodejs.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* This interface represents data that can be additionally collected by NodeJS Catcher
3+
*/
4+
export interface NodeJSAddons {}

src/base/event/addons/python.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* This interface represents data that can be additionally collected by Python Catcher
3+
*/
4+
export interface PythonAddons {}

0 commit comments

Comments
 (0)