UNPKG

unplugin-isolated-decl

Version:

A blazing-fast tool for generating isolated declarations.

23 lines (22 loc) 399 B
/** * This entry file is for Vite plugin. * * @module */ import { IsolatedDecl } from "./index.js"; /** * Vite plugin * * @example * ```ts * // vite.config.ts * import IsolatedDecl from 'unplugin-isolated-decl/vite' * * export default defineConfig({ * plugins: [IsolatedDecl()], * }) * ``` */ declare const vite: typeof IsolatedDecl.vite; export default vite; export { vite as "module.exports" };