Type Alias MinLength<Value>

MinLength<Value>: TagBase<{
    exclusive: true;
    kind: "minLength";
    schema: {
        minLength: Value;
    };
    target: "string";
    validate: `${Value} <= $input.length`;
    value: Value;
}>

Type Parameters

  • Value extends number