Spaces:
Paused
Paused
File size: 303 Bytes
b1bbd1e | 1 2 3 4 5 6 | import type { Declaration, Result } from 'postcss';
import { pluginOptions } from './index';
declare const remFunctionCheck = "rem(";
declare function transformRemFunction(decl: Declaration, result: Result, options: pluginOptions): string | undefined;
export { remFunctionCheck, transformRemFunction };
|