UNPKG
@parcility/kennel
Version:
latest (2.0.5)
2.0.5
2.0.4
2.0.3
2.0.2
2.0.0
A comprehensive, easy-to-use native depiction renderer.
github.com/Parcility/Kennel
Parcility/Kennel
@parcility/kennel
/
dist
/
views
/
base.d.ts
8 lines
(7 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
RenderableElement
}
from
"../renderable"
;
export
default
abstract
class
DepictionBaseView
{
tintColor
?:
string
;
static
viewName
:
string
;
constructor
(
depiction
:
any
);
abstract
make
():
Promise
<
RenderableElement
>; }