Element
A class that can be extended to create custom elements. Element is a CanElement that is derived from the HTMLElement. This is the element you will want to use to derive your own custom elements.
Use
To use this element, just extend your own element based off of it:
import { Element } from "can-element";
class MyElement extends Element {
// ...
}
This element uses the CanElement interface, so any properties of CanElement are supported.