1/**
2 * the ut for property in interface, the property has two jsDoc and first is required but second is not required
3 */
4export interface test {
5 /**
6 * @type { (string | Curve) }
7 */
8 /**
9 * @type { ?(string | Curve | ICurve) }
10 */
11 name?: string | Curve | ICurve;
12}