chore: fix lit-element types to reuse lion/core re-export
This commit is contained in:
parent
7a531b8524
commit
d46cbc790f
3 changed files with 6 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -38,4 +38,6 @@ local.log
|
||||||
## browserstack
|
## browserstack
|
||||||
browserstack.err
|
browserstack.err
|
||||||
|
|
||||||
|
debug.log
|
||||||
|
|
||||||
!packages/singleton-manager/demo/**/node_modules
|
!packages/singleton-manager/demo/**/node_modules
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import { expect, fixtureSync, defineCE, unsafeStatic, html, fixture } from '@open-wc/testing';
|
|
||||||
import sinon from 'sinon';
|
|
||||||
import { LitElement } from '@lion/core';
|
import { LitElement } from '@lion/core';
|
||||||
|
import { defineCE, expect, fixture, fixtureSync, html, unsafeStatic } from '@open-wc/testing';
|
||||||
|
import sinon from 'sinon';
|
||||||
import { SyncUpdatableMixin } from '../../src/utils/SyncUpdatableMixin.js';
|
import { SyncUpdatableMixin } from '../../src/utils/SyncUpdatableMixin.js';
|
||||||
|
|
||||||
describe('SyncUpdatableMixin', () => {
|
describe('SyncUpdatableMixin', () => {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
|
import { LitElement } from '@lion/core';
|
||||||
import { Constructor } from '@open-wc/dedupe-mixin';
|
import { Constructor } from '@open-wc/dedupe-mixin';
|
||||||
import { PropertyValues, LitElement } from 'lit-element';
|
import { PropertyValues } from 'lit-element';
|
||||||
|
|
||||||
export declare interface SyncUpdatableNamespace {
|
export declare interface SyncUpdatableNamespace {
|
||||||
connected?: boolean;
|
connected?: boolean;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue