@pandabox/postcss-plugins
Version:
- `removeUnusedCssVars` - `removeUnusedKeyframes`
11 lines (7 loc) • 340 B
text/typescript
import { TransformCallback } from 'postcss';
/**
* Adapted from https://github.com/tomasklaen/postcss-prune-var/blob/57ad5041806b73479d0c558e0b1a918803cb7cbc/index.js
*/
declare const removeUnusedCssVars: TransformCallback;
declare const removeUnusedKeyframes: TransformCallback;
export { removeUnusedCssVars, removeUnusedKeyframes };