5 lines
231 B
TypeScript
5 lines
231 B
TypeScript
import babel from '@babel/core';
|
|
import type { PluginObj } from '@babel/core';
|
|
import type { PluginOptions } from './utils';
|
|
export default function debugLabelPlugin({ types: t }: typeof babel, options?: PluginOptions): PluginObj;
|