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
/
table_button.d.ts
10 lines
(9 loc)
•
309 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
DepictionBaseView
from
"./base"
;
export
default
class
DepictionTableButtonView
extends
DepictionBaseView
{
title
:
string
;
action
:
string
;
openExternal
:
boolean
;
static
viewName
:
string
;
constructor
(
dictionary
:
any
);
make
():
Promise
<
import
(
"../renderable"
).
RenderableElement
>; }