46 lines
1 KiB
JavaScript
46 lines
1 KiB
JavaScript
/* eslint-disable */
|
|
|
|
import { RefClass } from 'exporting-ref-project';
|
|
import MyCompMixin from './internalProxy.js';
|
|
|
|
export class ExtendedComp extends MyCompMixin(RefClass) {
|
|
/**
|
|
* Whitelisted members
|
|
*/
|
|
get getterSetter() {}
|
|
set getterSetter(v) {}
|
|
static get staticGetterSetter() {}
|
|
static set staticGetterSetter(v) {}
|
|
method() {}
|
|
_protectedMethod() {}
|
|
__privateMethod() {}
|
|
$protectedMethod() {}
|
|
$$privateMethod() {}
|
|
|
|
/**
|
|
* Blacklisted platform methods ands props by find-classes
|
|
*/
|
|
static get attributes() {}
|
|
constructor() {}
|
|
connectedCallback() {}
|
|
disconnectedCallback() {}
|
|
/**
|
|
* Blacklisted LitElement methods ands props by find-classes
|
|
*/
|
|
static get properties() {}
|
|
static get styles() {}
|
|
get updateComplete() {}
|
|
_requestUpdate() {}
|
|
createRenderRoot() {}
|
|
render() {}
|
|
updated() {}
|
|
firstUpdated() {}
|
|
update() {}
|
|
shouldUpdate() {}
|
|
/**
|
|
* Blacklisted Lion methods and props by find-classes
|
|
*/
|
|
static get localizeNamespaces() {}
|
|
get slots() {}
|
|
onLocaleUpdated() {}
|
|
}
|