5 lines
172 B
TypeScript
5 lines
172 B
TypeScript
import { PluginObj, types as BabelTypes } from 'next/dist/compiled/babel/core';
|
|
export default function ({ types: t, }: {
|
|
types: typeof BabelTypes;
|
|
}): PluginObj<any>;
|