Hyperlinkv0.8.0-beta.28

SchemaRepresentation

SchemaRepresentation.$DateMetaconsteffect/SchemaRepresentation.ts:1450
Schema.Union<
  readonly [
    Schema.Struct<{ readonly _tag: Schema.tag<"isDateValid"> }>,
    Schema.Struct<{
      readonly _tag: Schema.tag<"isGreaterThanDate">
      readonly exclusiveMinimum: Schema.Date
    }>,
    Schema.Struct<{
      readonly _tag: Schema.tag<"isGreaterThanOrEqualToDate">
      readonly minimum: Schema.Date
    }>,
    Schema.Struct<{
      readonly _tag: Schema.tag<"isLessThanDate">
      readonly exclusiveMaximum: Schema.Date
    }>,
    Schema.Struct<{
      readonly _tag: Schema.tag<"isLessThanOrEqualToDate">
      readonly maximum: Schema.Date
    }>,
    Schema.Struct<{
      readonly _tag: Schema.tag<"isBetweenDate">
      readonly minimum: Schema.Date
      readonly maximum: Schema.Date
      readonly exclusiveMinimum: Schema.optional<Schema.Boolean>
      readonly exclusiveMaximum: Schema.optional<Schema.Boolean>
    }>
  ]
>

Schema for DateMeta.

schemasDateMeta
export const $DateMeta = Schema.Union([
  $IsDateValid,
  $IsGreaterThanDate,
  $IsGreaterThanOrEqualToDate,
  $IsLessThanDate,
  $IsLessThanOrEqualToDate,
  $IsBetweenDate
]).annotate({ identifier: "DateMeta" })
Referenced by 1 symbols