@cowtech/webpack-config
Version:
CowTech WebPack configuration without any CSS handling.
12 lines (11 loc) • 325 B
TypeScript
import { CallExpression, StringLiteral } from '@babel/types';
interface Types {
isCallExpression(node: object): node is CallExpression;
StringLiteral(value: string): StringLiteral;
}
export declare function babelRemoveFunction(options?: {
name?: string;
}): (options: {
types: Types;
}) => object;
export {};