vite-plugin-vue-css-modules
Version:
✨ Ultimate solution for using CSS modules without any hassle. Automatic replacement for Vue templates and scripts
6 lines (5 loc) • 374 B
TypeScript
import type { MagicString } from "@vue/compiler-sfc";
import type { TLocalTransformOptions } from "./";
type TQuote = "'" | '"' | "" | "`" | undefined;
export declare const transformJsValue: (source: string, contentOffset: number, sfcTransform: MagicString, attributeQuote: TQuote, { preservePrefix, localNameGenerator, module }: TLocalTransformOptions) => void;
export {};