{"_id":"@types/rollup-plugin-css-only","_rev":"3016666","name":"@types/rollup-plugin-css-only","description":"TypeScript definitions for rollup-plugin-css-only","dist-tags":{"latest":"3.1.1","ts3.7":"3.1.0","ts3.8":"3.1.0","ts3.9":"3.1.0","ts4.0":"3.1.0","ts4.1":"3.1.0","ts4.2":"3.1.0","ts4.3":"3.1.0","ts4.4":"3.1.0","ts4.5":"3.1.1","ts4.6":"3.1.1","ts4.7":"3.1.1","ts4.8":"3.1.1","ts4.9":"3.1.1","ts5.0":"3.1.1","ts5.1":"3.1.1","ts5.2":"3.1.1","ts5.3":"3.1.1"},"maintainers":[{"name":"types","email":""}],"time":{"modified":"2023-10-17T06:04:33.000Z","created":"2021-11-14T17:31:50.249Z","3.1.1":"2023-09-27T09:23:25.764Z","3.1.0":"2021-11-14T17:31:50.249Z"},"users":{},"repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/rollup-plugin-css-only"},"versions":{"3.1.1":{"name":"@types/rollup-plugin-css-only","version":"3.1.1","description":"TypeScript definitions for rollup-plugin-css-only","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-css-only","license":"MIT","contributors":[{"name":"Mateusz Szewc","url":"https://github.com/SitamMatt","githubUsername":"SitamMatt"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/rollup-plugin-css-only"},"scripts":{},"dependencies":{"@types/node":"*","rollup":"^0.63.4"},"typesPublisherContentHash":"acfbe5c41b90d38d060849b796195cea9038cbf0711bc7244b83665d92ba2a46","typeScriptVersion":"4.5","_id":"@types/rollup-plugin-css-only@3.1.1","dist":{"shasum":"cc276f3a03b0bc1483b12ec3adf8bb363b333c2b","size":1983,"noattachment":false,"key":"/@types/rollup-plugin-css-only/-/@types/rollup-plugin-css-only-3.1.1.tgz","tarball":"http://registry.cnpm.dingdandao.com/@types/rollup-plugin-css-only/download/@types/rollup-plugin-css-only-3.1.1.tgz"},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":""}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rollup-plugin-css-only_3.1.1_1695806605567_0.7595905167690478"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-27T09:23:25.764Z","publish_time":1695806605764,"_source_registry_name":"default","_cnpm_publish_time":1695806605764},"3.1.0":{"name":"@types/rollup-plugin-css-only","version":"3.1.0","description":"TypeScript definitions for rollup-plugin-css-only","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-css-only","license":"MIT","contributors":[{"name":"Mateusz Szewc","url":"https://github.com/SitamMatt","githubUsername":"SitamMatt"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/rollup-plugin-css-only"},"scripts":{},"dependencies":{"@types/node":"*","rollup":"^0.63.4"},"typesPublisherContentHash":"8ba17e5a0b38867f723a7107c945085b46e3d5994c5aeabcb7babb0317a7c361","typeScriptVersion":"3.7","_id":"@types/rollup-plugin-css-only@3.1.0","dist":{"shasum":"22d847b77be79321671beaeaaddffd8b9417a8e6","size":1924,"noattachment":false,"key":"/@types/rollup-plugin-css-only/-/@types/rollup-plugin-css-only-3.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/@types/rollup-plugin-css-only/download/@types/rollup-plugin-css-only-3.1.0.tgz"},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":""}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rollup-plugin-css-only_3.1.0_1636911110092_0.6822521645143425"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-21T09:36:23.986Z","publish_time":1636911110249,"_cnpm_publish_time":1636911110249}},"readme":"# Installation\r\n> `npm install --save @types/rollup-plugin-css-only`\r\n\r\n# Summary\r\nThis package contains type definitions for rollup-plugin-css-only (https://github.com/thgh/rollup-plugin-css-only).\r\n\r\n# Details\r\nFiles were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-css-only.\r\n## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-css-only/index.d.ts)\r\n````ts\r\n// Type definitions for rollup-plugin-css-only 3.1\n// Project: https://github.com/thgh/rollup-plugin-css-only\n// Definitions by: Mateusz Szewc <https://github.com/SitamMatt>\n// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\n\n/// <reference types=\"node\" />\nimport { OutputBundle, Plugin } from \"rollup\";\n\ndeclare namespace css {\n    interface Options {\n        /**\n         *  All CSS files will be parsed by default, but you can also specifically include files\n         */\n        include?: ReadonlyArray<string | RegExp> | string | RegExp | null;\n        /**\n         *  CSS files to exclude from being parsed\n         */\n        exclude?: ReadonlyArray<string | RegExp> | string | RegExp | null;\n        /**\n         * Callback that will be called ongenerate\n         */\n        output?:\n            | boolean\n            | string\n            | ((styles: string, styleNodes: Record<string, string>, bundle: OutputBundle) => void)\n            | null\n            | undefined;\n    }\n}\n\ndeclare function css(options?: css.Options): Plugin;\nexport = css;\n\r\n````\r\n\r\n### Additional Details\r\n * Last updated: Wed, 27 Sep 2023 07:12:04 GMT\r\n * Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/rollup](https://npmjs.com/package/@types/rollup)\r\n * Global values: none\r\n\r\n# Credits\r\nThese definitions were written by [Mateusz Szewc](https://github.com/SitamMatt).\r\n","_attachments":{},"homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-css-only","license":"MIT"}