Function: collectGridTemplateAreas()
function collectGridTemplateAreas(root: Root_): readonly Readonly<{
areaNames: readonly string[];
declaration: Declaration_;
diagnostics: readonly Readonly<{
message: string;
token?: string;
}>[];
rows: readonly (readonly string[][]);
}>[];
Defined in: _internal/grid-template-analysis.ts:90
Collect parsed grid-template-areas declarations in source order.
Parametersโ
rootโ
Root_
Returnsโ
readonly Readonly<{
areaNames: readonly string[];
declaration: Declaration_;
diagnostics: readonly Readonly<{
message: string;
token?: string;
}>[];
rows: readonly readonly string[][];
}>[]