We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 748c6ec commit ce11f0fCopy full SHA for ce11f0f
package.json
@@ -1,8 +1,9 @@
1
{
2
"name": "validate-html-nesting",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"description": "Validate parent-child nesting for HTML elements",
5
"main": "src/index.js",
6
+ "types": "./src/types.d.ts",
7
"scripts": {
8
"test": "jest"
9
},
src/types.d.ts
@@ -0,0 +1 @@
+declare function isValidHTMLNesting(parentTag: string, childTag: string): boolean;
0 commit comments