/** * @file Plugins - filter * @module mkbuild/plugins/filter/plugin */ import type { Plugin } from 'esbuild'; /** * Returns an output file filter plugin. * * @param {RegExp} [filter=/.+/] - Output file path filter * @return {Plugin} Output file path filter plugin */ declare const plugin: (filter?: RegExp) => Plugin; export default plugin;