UNPKG
@es-js/eshtml
Version:
latest (0.0.1)
0.0.1
0.0.1-beta.1
0.0.1-alpha.9
0.0.1-alpha.8
0.0.1-alpha.7
0.0.1-alpha.6
0.0.1-alpha.5
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
EsHTML: HTML en Español
github.com/es-js/esjs
es-js/esjs
@es-js/eshtml
/
dist
/
index.d.cts
9 lines
(7 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
interface
CompileOptions
{
from
?:
'eshtml'
|
'html'
;
to
?:
'eshtml'
|
'html'
;
compileEsJS
?:
boolean
; }
declare
function
compile
(
content
:
string
,
options
?:
CompileOptions
):
string
;
export
{
type
CompileOptions
, compile };