MapComplete/UI/InputElement/Validators/TextValidator.ts
2023-03-29 17:56:42 +02:00

7 lines
222 B
TypeScript

import { Validator } from "../Validator"
export default class TextValidator extends Validator {
constructor() {
super("text", "A longer piece of text. Uses an textArea instead of a textField", "text")
}
}