postcss-theme-fold
Version:
[![NPM Version][npm-img]][npm-url] [![github (ci)][github-ci]][github-ci]
16 lines (15 loc) • 356 B
TypeScript
declare type ProcessCssContentOptions = {
/**
* Raw css.
*/
css: string;
/**
* Css file path.
*/
from: string;
};
/**
* Process css — resolve imports, extract sass-like variables and calculate colors.
*/
export declare function processCssContent({ css, from }: ProcessCssContentOptions): Promise<string>;
export {};