UNPKG
anobis
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
JavaScript obfuscator
github.com/DelphineWolff/anobis
DelphineWolff/anobis
anobis
/
src
/
interfaces
/
custom-nodes
/
ICustomNode.d.ts
16 lines
(12 loc)
•
310 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
TStatement
}
from
'../../types/node/TStatement'
;
import
{
IInitializable
}
from
'../IInitializable'
;
export
interface
ICustomNode
extends
IInitializable
{
/** *
@returns
{
string
} */
getCode
():
string
;
/** *
@returns
ESTree.Node[] */
getNode
():
TStatement
[]; }