4 lines
156 B
TypeScript
4 lines
156 B
TypeScript
import type { File } from '@babel/types';
|
|
export declare const parseAst: (input: string) => File;
|
|
export declare const serializeAst: (ast: File) => string;
|