UNPKG

307 BTypeScriptView Raw
1import type { PluginCreator } from 'postcss';
2
3declare const creator: PluginCreator<pluginOptions>;
4export default creator;
5
6/** postcss-custom-properties plugin options */
7export declare type pluginOptions = {
8 /** Preserve the original notation. default: true */
9 preserve?: boolean;
10};
11
12export { }