mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-11 20:04:55 +02:00
10 lines
270 B
TypeScript
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 };
|