8889841cREADME.md000066600000001273150441751000006027 0ustar00# Installation > `npm install --save @types/imagemin-svgo` # Summary This package contains type definitions for imagemin-svgo (https://github.com/imagemin/imagemin-svgo#readme). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/imagemin-svgo. ### Additional Details * Last updated: Sun, 07 Mar 2021 10:09:12 GMT * Dependencies: [@types/svgo](https://npmjs.com/package/@types/svgo), [@types/imagemin](https://npmjs.com/package/@types/imagemin) * Global values: none # Credits These definitions were written by [Romain Faust](https://github.com/romain-faust), and [Piotr Błażejewicz](https://github.com/peterblazejewicz). index.d.ts000066600000001120150441751000006440 0ustar00// Type definitions for imagemin-svgo 8.0 // Project: https://github.com/imagemin/imagemin-svgo#readme // Definitions by: Romain Faust // Piotr Błażejewicz // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped import { Plugin } from 'imagemin'; import { Options as SvgoOptions } from 'svgo'; /** * SVGO imagemin plugin */ declare function imageminSvgo(options?: imageminSvgo.Options): Plugin; declare namespace imageminSvgo { type Options = SvgoOptions; } export = imageminSvgo; LICENSE000066600000002165150441751000005556 0ustar00 MIT License Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE package.json000066600000001670150441751000007037 0ustar00{ "name": "@types/imagemin-svgo", "version": "8.0.1", "description": "TypeScript definitions for imagemin-svgo", "license": "MIT", "contributors": [ { "name": "Romain Faust", "url": "https://github.com/romain-faust", "githubUsername": "romain-faust" }, { "name": "Piotr Błażejewicz", "url": "https://github.com/peterblazejewicz", "githubUsername": "peterblazejewicz" } ], "main": "", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/imagemin-svgo" }, "scripts": {}, "dependencies": { "@types/imagemin": "*", "@types/svgo": "^1" }, "typesPublisherContentHash": "e1aaa696ba0d69c1db2211228694de895b78f42c78dc496d7b8c107b63148c02", "typeScriptVersion": "3.5" }