Urara-Blog/node_modules/.pnpm-store/v3/files/04/88ad4e14fd86df8ae3470853ba3bc1bb16e4051f064e1fd7dbc34850bcc551b2eed47caeaaded9bd1167e4fe9f0417b6da12661030a0b36f5387813300b60c
2022-08-14 01:14:53 +08:00

15 lines
784 B
Text

/**
* @param {import('postcss-value-parser').ParsedValue} gridAutoFlow
* @return {import('postcss-value-parser').ParsedValue | string}
*/
export function 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}
*/
export function normalizeGridColumnRowGap(gridGap: import('postcss-value-parser').ParsedValue): import('postcss-value-parser').ParsedValue | string;
/**
* @param {import('postcss-value-parser').ParsedValue} grid
* @return {string | string[]}
*/
export function normalizeGridColumnRow(grid: import('postcss-value-parser').ParsedValue): string | string[];