postcss-ordered-values
Version:
Ensure values are ordered consistently in your CSS.
22 lines • 1.05 kB
TypeScript
declare const _exports: {
normalizeGridAutoFlow: typeof normalizeGridAutoFlow;
normalizeGridColumnRowGap: typeof normalizeGridColumnRowGap;
normalizeGridColumnRow: typeof normalizeGridColumnRow;
};
export = _exports;
/**
* @param {import('postcss-value-parser').ParsedValue} gridAutoFlow
* @return {import('postcss-value-parser').ParsedValue | string}
*/
declare const normalizeGridAutoFlow: (gridAutoFlow: import('postcss-value-parser').ParsedValue) => import('postcss-value-parser').ParsedValue | string;
/**
* @param {import('postcss-value-parser').ParsedValue} gridGap
* @return {import('postcss-value-parser').ParsedValue | string}
*/
declare const normalizeGridColumnRowGap: (gridGap: import('postcss-value-parser').ParsedValue) => import('postcss-value-parser').ParsedValue | string;
/**
* @param {import('postcss-value-parser').ParsedValue} grid
* @return {string | string[]}
*/
declare const normalizeGridColumnRow: (grid: import('postcss-value-parser').ParsedValue) => string | string[];
//# sourceMappingURL=grid.d.ts.map