Merge pull request #893 from ing-bank/fix/lit-types

chore: fix lit-element types to reuse lion/core re-export
This commit is contained in:
Joren Broekema 2020-08-20 16:42:32 +02:00 committed by GitHub
commit aade6b9424
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View file

@ -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

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 { 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', () => {

View file

@ -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;