mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 15:59:30 +08:00
15 lines
784 B
Text
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[];
|