@twstyled/babel-preset
Version:
Babel plugin for twstyled -- the full-featured Tailwind CSS + CSS in JS Compiler
9 lines (8 loc) • 302 B
TypeScript
import type { Visitor } from '@babel/traverse';
import type core from '@babel/core';
import { CorePluginOptions, CorePluginState } from './types';
declare type Core = typeof core;
export default function (babel: Core, options: CorePluginOptions): {
visitor: Visitor<CorePluginState>;
};
export {};