Skip to content

Commit

Permalink
Move node-domexception declarations out of the src folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
octet-stream committed Aug 23, 2022
1 parent e30c055 commit 3f7bb6e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
7 changes: 7 additions & 0 deletions node-domexception.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
declare module "node-domexception" {
class DOMException {
constructor(message: string, name: string)
}

export default DOMException
}
5 changes: 0 additions & 5 deletions src/node-domexception.d.ts

This file was deleted.

4 changes: 1 addition & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"include": [
"src/**/*.ts"
],
"include": ["src/**/*.ts", "node-domexception.d.ts"],
"exclude": [
"node_modules",
"src/__helper__/**",
Expand Down

0 comments on commit 3f7bb6e

Please sign in to comment.