// Type definitions for SVG Injector // Project: https://github.com/iconic/SVGInjector // Definitions by: Patrick Westerhoff // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare interface SVGInjector { /** * Replace the given elements with their full inline SVG DOM elements. * * @param elements Array of or single DOM element. * @param options Injector options. * @param done Callback that receives the injected element count as parameter. */ (elements: Node | NodeList | Array, options?: SVGInjectorOptions, done?: (elementCount: number) => void): void; } declare interface SVGInjectorOptions { /** * Whether to run scripts blocks found in the SVG. * * Possible values: * 'always' — Run scripts every time. * 'once' — Only run scripts once for each SVG. * 'never' — Ignore scripts (default) */ evalScripts?: string; /** * Location of fallback pngs, if desired. */ pngFallback?: string; /** * Callback to run during each SVG injection. The SVG element is passed if * the injection was successful. */ each?: (svg: SVGElement | string) => void; } declare module "svg-injector" { var SVGInjector: SVGInjector; export = SVGInjector; }