Skip to content

Commit

Permalink
re-exporting types in index.ts
Browse files Browse the repository at this point in the history
- added lib/ to .gitignore
- updated package-lock.json to match version in package.json
  • Loading branch information
Levyks committed Jan 28, 2023
1 parent 4e0c2aa commit baa9326
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
lib
.vscode
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@ import { Application } from "./Application";
export default function (app: uWS.TemplatedApp) {
return new Application(app);
}

export { Application };
export { IncomingMessage } from "./IncomingMessage";
export { ServerResponse } from "./ServerResponse";
export { Socket } from "./Socket";

0 comments on commit baa9326

Please sign in to comment.