typst_analyzer_analysis/
dict.rs1pub static NONE: &str = "none";
2pub static AUTO: &str = "auto";
3pub static COLUMNS: (&str, &str) = ("columns", AUTO);
6pub static ROWS: (&str, &str) = ("rows", AUTO);
7pub static GUTTER: (&str, &str) = ("gutter", AUTO);
8pub static COLUMN_GUTTER: (&str, &str) = ("column-gutter", AUTO);
9pub static ROW_GUTTER: (&str, &str) = ("row-gutter", AUTO);
10pub static FILL: (&str, &str) = ("fill", NONE);
11pub static ALIGN: (&str, &str) = ("align", AUTO);
12pub static STROKE: (&str, &str) = ("stroke", NONE);
13pub static INSET: (&str, &str) = ("inset", "relative");