fix(core): remove type exports; use lit-element/html directly for types
This commit is contained in:
parent
af538b6f3a
commit
b2e7b7098b
1 changed files with 16 additions and 4 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
/**
|
||||||
|
* Info for TypeScript users:
|
||||||
|
* For now please import types from lit-element and lit-html directly.
|
||||||
|
*/
|
||||||
|
|
||||||
// lit-html
|
// lit-html
|
||||||
export {
|
export {
|
||||||
html,
|
html,
|
||||||
|
|
@ -23,15 +28,22 @@ export { unsafeHTML } from 'lit-html/directives/unsafe-html.js';
|
||||||
export { until } from 'lit-html/directives/until.js';
|
export { until } from 'lit-html/directives/until.js';
|
||||||
// lit-element
|
// lit-element
|
||||||
export {
|
export {
|
||||||
css,
|
|
||||||
LitElement,
|
LitElement,
|
||||||
UpdatingElement,
|
// css-tag.js
|
||||||
unsafeCSS,
|
supportsAdoptingStyleSheets,
|
||||||
CSSResult,
|
CSSResult,
|
||||||
|
unsafeCSS,
|
||||||
|
css,
|
||||||
|
// updating-element.js
|
||||||
defaultConverter,
|
defaultConverter,
|
||||||
notEqual,
|
notEqual,
|
||||||
|
UpdatingElement,
|
||||||
|
// decorators.js
|
||||||
|
customElement,
|
||||||
property,
|
property,
|
||||||
PropertyDeclarations,
|
query,
|
||||||
|
queryAll,
|
||||||
|
eventOptions,
|
||||||
} from 'lit-element';
|
} from 'lit-element';
|
||||||
// ours
|
// ours
|
||||||
export { dedupeMixin } from './src/dedupeMixin.js';
|
export { dedupeMixin } from './src/dedupeMixin.js';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue