Skip to content

Commit 3f7bb6e

Browse files
committed
Move node-domexception declarations out of the src folder.
1 parent e30c055 commit 3f7bb6e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

node-domexception.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
declare module "node-domexception" {
2+
class DOMException {
3+
constructor(message: string, name: string)
4+
}
5+
6+
export default DOMException
7+
}

src/node-domexception.d.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
"include": [
3-
"src/**/*.ts"
4-
],
2+
"include": ["src/**/*.ts", "node-domexception.d.ts"],
53
"exclude": [
64
"node_modules",
75
"src/__helper__/**",

0 commit comments

Comments
 (0)