mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 05:08:25 -04:00
6 lines
303 B
TypeScript
6 lines
303 B
TypeScript
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 };
|