UNPKG

270 BTypeScriptView Raw
1import { Config } from '@svgr/core';
2import * as webpack from 'webpack';
3
4interface LoaderOptions extends Config {
5 babel?: boolean;
6}
7declare function svgrLoader(this: webpack.LoaderContext<LoaderOptions>, contents: string): void;
8
9export { svgrLoader as default };