unplugin-isolated-decl
Version:
A blazing-fast tool for generating isolated declarations.
23 lines (22 loc) • 400 B
text/typescript
/**
* This entry file is for Vite plugin.
*
* @module
*/
import { IsolatedDecl } from "./index.mjs";
/**
* 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" };