- import type { Transformer } from './interface';
- /**
- * Convert css logical properties to legacy properties.
- * Such as: `margin-block-start` to `margin-top`.
- * Transform list:
- * - inset
- * - margin
- * - padding
- * - border
- */
- declare const transform: Transformer;
- export default transform;
|