Skip to content

Commit db543a6

Browse files
author
Steven Orvell
committed
Remove cycle in module graph
Hard for some tools to deal with.
1 parent 412ca89 commit db543a6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/lib/updating-element.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ interface AttributeSerializer<T = any> {
3232

3333
type AttributeType<T = any> = AttributeSerializer<T>|((value: string) => T);
3434

35-
export * from './decorators.js';
36-
3735
/**
3836
* Defines options for a property accessor.
3937
*/

src/lit-element.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {render} from 'lit-html/lib/shady-render';
1717
import {PropertyValues, UpdatingElement} from './lib/updating-element.js';
1818

1919
export * from './lib/updating-element.js';
20+
export * from './lib/decorators.js';
2021
export {html, svg} from 'lit-html/lit-html';
2122

2223
export abstract class LitElement extends UpdatingElement {

0 commit comments

Comments
 (0)