How to use the tsInterfaceBody function from @babel/types
Find comprehensive JavaScript @babel/types.tsInterfaceBody code examples handpicked from public code repositorys.
41 42 43 44 45 46 47 48 49
const ast = bt.exportNamedDeclaration( bt.tsInterfaceDeclaration( bt.identifier(object.name), undefined, null, bt.tsInterfaceBody(fields), ), [] )
9
40
4
+ 7 other calls in file
GitHub: groupon/esfixup
100 101 102 103 104 105 106 107 108 109
t.exportNamedDeclaration( t.tsInterfaceDeclaration( t.identifier(objName), null, null, t.tsInterfaceBody(propLines.trim().split('\n').map(propLineToTypeElem)) ), [] ) );
0
0
7
+ 3 other calls in file
@babel/types.identifier is the most popular function in @babel/types (20936 examples)