Skip to content

Commit c9aa07e

Browse files
committed
0.0.2
1 parent 572ea98 commit c9aa07e

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CustomElement.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export {}
1+
export {}

CustomElementConstructor.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CustomElement } from './CustomElement.d.ts'
1+
import type { CustomElement } from "./CustomElement.d.ts"
22

33
/** Constructor interface for custom elements. */
44
export interface CustomElementConstructor<T = CustomElement> {

CustomElementConstructor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export {}
1+
export {}

CustomElementRegistry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export {}
1+
export {}

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "typed-custom-elements",
44
"description": "TypeScript types for building type-safe Web Components with proper type checking for custom elements.",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"type": "module",
77
"license": "MIT-0",
88
"exports": {
@@ -11,6 +11,8 @@
1111
"./CustomElementConstructor": "./CustomElementConstructor.js",
1212
"./CustomElementRegistry": "./CustomElementRegistry.js"
1313
},
14+
"main": "typed-custom-elements.js",
15+
"types": "typed-custom-elements.d.ts",
1416
"files": [
1517
"CustomElement.d.ts",
1618
"CustomElement.js",

0 commit comments

Comments
 (0)