Files
documentation/node_modules/@svgr/webpack/dist/index.d.ts
2024-03-22 03:47:51 +05:30

10 lines
270 B
TypeScript

import { Config } from '@svgr/core';
import * as webpack from 'webpack';
interface LoaderOptions extends Config {
babel?: boolean;
}
declare function svgrLoader(this: webpack.LoaderContext<LoaderOptions>, contents: string): void;
export { svgrLoader as default };