/** * Author: Dong Zhuang */ import { SVGIconSubset } from "./types"; /** * @name svgIconSubset * @description Extract subset(s) of svg icons from multiple providers (svgicon npm packages) * and generate webfonts for each, along with css/scss, with the Font-Awesome styles. * See "./demo-combine.js" for use case examples. * * @param providerObjects an array of SubsetProvider Objects. Currently, available providers include * `MdiProvider`, `FaFreeProvider`, `BiProvider` and `BiProvider`. * @param outputDir Output directory of generated webfonts, along with css/scss, metadata and font license, * defaults to `./output`. * @param options tweaks for further configurations. */ declare const svgIconSubset: SVGIconSubset; export { svgIconSubset }; export * from "./types"; export * from "./providers/providers"; export default svgIconSubset;