mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
import { Plugin } from 'webpack';
|
|
|
|
export = SVGSpriteLoaderPlugin;
|
|
|
|
declare class SVGSpriteLoaderPlugin extends Plugin {
|
|
constructor(options?: SVGSpriteLoaderPlugin.Options);
|
|
}
|
|
|
|
declare namespace SVGSpriteLoaderPlugin {
|
|
interface Options {
|
|
/** Render plain sprite without styles and usages */
|
|
plainSprite?: boolean;
|
|
/** Custom tag attributes for the svg */
|
|
spriteAttrs?: {[key: string]: any};
|
|
}
|
|
}
|