@twstyled/babel-preset
Version:
Babel plugin for twstyled -- the full-featured Tailwind CSS + CSS in JS Compiler
6 lines (5 loc) • 303 B
TypeScript
import type { NodePath, types } from '@babel/core';
import type { CorePluginState } from '../types';
declare type TransformerTWX = (paths: NodePath<types.Node>[], state: CorePluginState, t: typeof types) => void;
export default function getTransformerTWX(configPath: string): TransformerTWX;
export {};