UNPKG

postcss-px-morph

Version:

A flexible PostCSS plugin to transform px to rem, vw, or a hybrid of both, with advanced configuration.

8 lines (7 loc) 267 B
import type { Plugin } from 'postcss'; import { PxMorphOptions } from './types'; import { defaultOptions } from './utils/validate'; export * from './types'; export { defaultOptions }; declare const Plugin: (options?: PxMorphOptions) => Plugin; export default Plugin;