UNPKG

333 BTypeScriptView Raw
1import { CallExpression, StringLiteral } from '@babel/types';
2interface Types {
3 isCallExpression: (node: object) => node is CallExpression;
4 StringLiteral: (value: string) => StringLiteral;
5}
6export declare function babelRemoveFunction(options?: {
7 name?: string;
8}): (options: {
9 types: Types;
10}) => object;
11export {};