UNPKG
svem
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Svelte in Markdown preprocessor
github.com/beerush-id/svem
beerush-id/svem
svem
/
dist
/
plugins
/
tab.d.ts
9 lines
(6 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
XNode
,
XAttributes
}
from
'./attribute.js'
;
import
{
XHTMLNode
}
from
'./html.js'
;
import
'unified'
;
import
'mdast'
;
declare
function
createTab
(
children
:
XNode
[],
attrId
?:
string
|
number
|
XAttributes
):
XHTMLNode
;
export
{ createTab };