postcss-normalize-string
Advanced tools
Comparing version
{ | ||
"name": "postcss-normalize-string", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"description": "Normalize wrapping quotes for CSS string literals.", | ||
@@ -35,7 +35,7 @@ "main": "src/index.js", | ||
"devDependencies": { | ||
"postcss": "^8.4.38" | ||
"postcss": "^8.5.3" | ||
}, | ||
"peerDependencies": { | ||
"postcss": "^8.4.31" | ||
"postcss": "^8.4.32" | ||
} | ||
} |
@@ -8,9 +8,6 @@ export = pluginCreator; | ||
*/ | ||
declare function pluginCreator(opts: Options): import('postcss').Plugin; | ||
declare function pluginCreator(opts: Options): import("postcss").Plugin; | ||
declare namespace pluginCreator { | ||
export { postcss, StringAstNode, StringAst, Options }; | ||
} | ||
type Options = { | ||
preferredQuote?: 'double' | 'single'; | ||
}; | ||
declare var postcss: true; | ||
@@ -40,2 +37,5 @@ type StringAstNode = { | ||
}; | ||
type Options = { | ||
preferredQuote?: "double" | "single"; | ||
}; | ||
//# sourceMappingURL=index.d.ts.map |
Sorry, the diff of this file is not supported yet
11683
-0.03%