245 B
12 lines
Blame
1
declare
module
'
@zenuml/core
'
{
2
interface
RenderOptions
{
3
theme
?
:
string
;
4
mode
?
:
string
;
5
}
6
7
export
default
class
ZenUml
{
8
constructor
(
container
:
Element
);
9
render
(
text
:
string
,
options
?
:
RenderOptions
):
Promise
<
void
>;
10
}
11
}
12