UNPKG

@visulima/packem

Version:

A fast and modern bundler for Node.js and TypeScript.

8 lines (7 loc) 263 B
import type { FilterPattern } from "@rollup/pluginutils"; import type { Plugin } from "rollup"; export interface RawLoaderOptions { exclude?: FilterPattern; include?: FilterPattern; } export declare const rawPlugin: (options: RawLoaderOptions) => Plugin;