chore: fix lit-element types to reuse lion/core re-export

This commit is contained in:
Joren Broekema 2020-08-20 16:35:44 +02:00
parent 7a531b8524
commit d46cbc790f
3 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View file

@ -38,4 +38,6 @@ local.log
## browserstack
browserstack.err
debug.log
!packages/singleton-manager/demo/**/node_modules

View file

@ -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 { defineCE, expect, fixture, fixtureSync, html, unsafeStatic } from '@open-wc/testing';
import sinon from 'sinon';
import { SyncUpdatableMixin } from '../../src/utils/SyncUpdatableMixin.js';
describe('SyncUpdatableMixin', () => {

View file

@ -1,5 +1,6 @@
import { LitElement } from '@lion/core';
import { Constructor } from '@open-wc/dedupe-mixin';
import { PropertyValues, LitElement } from 'lit-element';
import { PropertyValues } from 'lit-element';
export declare interface SyncUpdatableNamespace {
connected?: boolean;