* @template {delta.DeltaConf} DC * @param {delta.Delta } d * @return {YType }
(d)
| 659 | * @return {YType<DC>} |
| 660 | */ |
| 661 | static from (d) { |
| 662 | const yt = new YType(d.name) |
| 663 | yt.applyDelta(d) |
| 664 | return yt |
| 665 | } |
| 666 | |
| 667 | get length () { |
| 668 | this.doc ?? warnPrematureAccess() |
no test coverage detected