Variable datePositionCalculationShapeConst

datePositionCalculationShape: ShapeDefinition<
    ShapeOr<
        [
            {
                get: ShapeExact<readonly [Month]>;
                in: ShapeOr<
                    [ShapeExact<readonly [Year]>, ShapeExact<readonly [Quarter]>],
                >;
            },
            {
                get: ShapeExact<readonly [Week]>;
                in: ShapeOr<
                    [
                        ShapeExact<readonly [Year]>,
                        ShapeExact<readonly [Quarter]>,
                        ShapeExact<readonly [Month]>,
                    ],
                >;
            },
            {
                get: ShapeExact<readonly [Day]>;
                in: ShapeOr<
                    [
                        ShapeExact<readonly [Year]>,
                        ShapeExact<readonly [Quarter]>,
                        ShapeExact<readonly [Month]>,
                        ShapeExact<readonly [Week]>,
                    ],
                >;
            },
        ],
    >,
    false,
> = ...

Shape definition for all valid date position calculations. Used for calculateDatePosition.