7 lines
167 B
TypeScript
Executable File
7 lines
167 B
TypeScript
Executable File
import { RootNode } from 'svg-parser';
|
|
import * as t from '@babel/types';
|
|
|
|
declare const toBabelAST: (tree: RootNode) => t.Program;
|
|
|
|
export { toBabelAST as default };
|