Rxova
Skip to content

DatePiece

type DatePiece =
| {
kind: "segment";
type: DateSegment;
}
| {
kind: "literal";
text: string;
};

One rendered piece: an editable segment, or the text between two of them.