Skip to content

Commit 8819601

Browse files
add exports for non-decorator usage to index.ts. fixes #152.
1 parent 5adc2e4 commit 8819601

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

src/index.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
export * from './bind.js'
2-
export * from './register.js'
3-
export * from './findtarget.js'
4-
export * from './target.js'
5-
export * from './controller.js'
6-
export * from './attr.js'
1+
export {bind, listenForBind} from './bind.js'
2+
export {register} from './register.js'
3+
export {findTarget, findTargets} from './findtarget.js'
4+
export {target, targets} from './target.js'
5+
export {controller} from './controller.js'
6+
export {attr, initializeAttrs, defineObservedAttributes} from './attr.js'
7+
export {autoShadowRoot} from './auto-shadow-root.js'

0 commit comments

Comments
 (0)