We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ff2b5 commit 6093476Copy full SHA for 6093476
packages/firecamp-har/package.json
@@ -24,7 +24,8 @@
24
"version": "standard-version"
25
},
26
"dependencies": {
27
- "@firecamp/types": "^0.2.2"
+ "@firecamp/types": "^0.2.2",
28
+ "@types/har-format": "^1.2.8"
29
30
"devDependencies": {
31
"@types/chrome": "^0.0.204",
packages/firecamp-har/src/index.ts
@@ -1,10 +1,11 @@
1
+import { Har } from 'har-format';
2
import { Collection } from '@firecamp/types';
3
4
const firecampToHar = (collection: Partial<Collection>): any => {
5
return {};
6
};
7
-const harToFirecamp = (): Partial<Collection> => {
8
+const harToFirecamp = (har: Har): Partial<Collection> => {
9
return { requests: [] };
10
11
packages/firecamp-har/src/types.ts
@@ -0,0 +1 @@
+
0 commit comments