File tree 6 files changed +27
-5
lines changed
6 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 6
6
"plugin:@typescript-eslint/recommended"
7
7
],
8
8
"rules": {
9
- "object-curly-spacing": ["error", "always"]
9
+ "object-curly-spacing": ["error", "always"],
10
+ "@typescript-eslint/no-empty-interface": ["off"]
10
11
}
11
- }
12
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " hawk.types" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " TypeScript definitions for Hawk" ,
5
5
"types" : " build/index.d.ts" ,
6
6
"main" : " build/index.js" ,
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This interface represents data that can be additionally collected by Go Catcher
3
+ */
4
+ export interface GoAddons { }
Original file line number Diff line number Diff line change 1
1
import { JavaScriptAddons , WindowData , VueIntegrationAddons } from './javascript' ;
2
2
import { PhpAddons } from './php' ;
3
+ import { NodeJSAddons } from './nodejs' ;
4
+ import { GoAddons } from './go' ;
5
+ import { PythonAddons } from './python' ;
3
6
4
7
/**
5
8
* Union Type describing all catcher-specific additional data
6
9
*/
7
10
type EventAddons =
8
11
| JavaScriptAddons
9
12
| PhpAddons
13
+ | NodeJSAddons
14
+ | GoAddons
15
+ | PythonAddons
10
16
;
11
17
12
18
export {
13
- JavaScriptAddons ,
14
19
WindowData ,
15
20
VueIntegrationAddons ,
16
- PhpAddons ,
17
21
EventAddons ,
22
+ JavaScriptAddons ,
23
+ PhpAddons ,
24
+ NodeJSAddons ,
25
+ GoAddons ,
26
+ PythonAddons
18
27
}
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This interface represents data that can be additionally collected by NodeJS Catcher
3
+ */
4
+ export interface NodeJSAddons { }
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This interface represents data that can be additionally collected by Python Catcher
3
+ */
4
+ export interface PythonAddons { }
You can’t perform that action at this time.
0 commit comments