unplugin-quansync
Version:
Write async functions, get both async and sync functions
27 lines (23 loc) • 423 B
TypeScript
import { Quansync } from './index.js';
import 'unplugin';
import 'unplugin-utils';
/**
* This entry file is for Rollup plugin.
*
* @module
*/
/**
* Rollup plugin
*
* @example
* ```ts
* // rollup.config.js
* import Quansync from 'unplugin-quansync/rollup'
*
* export default {
* plugins: [Quansync()],
* }
* ```
*/
declare const rollup: typeof Quansync.rollup;
export { rollup as "module.exports", rollup as default };