postcss-ordered-values
Version:
Ensure values are ordered consistently in your CSS.
17 lines • 910 B
TypeScript
/**
* @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[];
export { normalizeGridAutoFlow, normalizeGridColumnRowGap, normalizeGridColumnRow, };
//# sourceMappingURL=grid.d.ts.map