Skip to main content

css_ast/types/
basic_shape.rs

1#![allow(unused)]
2use super::prelude::*;
3
4use crate::Todo;
5
6/// <https://drafts.csswg.org/css-shapes-1/#typedef-basic-shape>
7///
8/// ```text,ignore
9/// <basic-shape> = <basic-shape-rect> | <circle()> | <ellipse()> |  <polygon()> | <path()> | <shape()>
10/// ```
11pub type BasicShape = Todo;
12
13#[cfg(test)]
14mod tests {
15	use super::*;
16	use crate::CssAtomSet;
17}