File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 41
41
npm clean-install
42
42
npm run test:coverage
43
43
44
- - name : Upload coverage results to Coveralls
45
- uses : coverallsapp/github-action@master
46
- with :
47
- github-token : ${{ secrets.GITHUB_TOKEN }}
48
- path-to-lcov : ./test/coverage/lcov.info
44
+ - name : Upload coverage reports to Codecov
45
+ uses : codecov/codecov-action@v3
46
+ env :
47
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -7,3 +7,6 @@ import type { DeepgramClientOptions } from "./lib/types";
7
7
export const createClient = ( apiKey : string , options ?: DeepgramClientOptions ) : DeepgramClient => {
8
8
return new DeepgramClient ( apiKey , options ) ;
9
9
} ;
10
+
11
+ export * from "./lib/types" ;
12
+ export * from "./lib/enums" ;
You can’t perform that action at this time.
0 commit comments