MapComplete/src/UI/InputElement/Validators/TextValidator.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
299 B
TypeScript
Raw Normal View History

2024-07-16 12:49:17 +02:00
import StringValidator from "./StringValidator"
2023-03-29 17:21:20 +02:00
2024-07-16 12:49:17 +02:00
export default class TextValidator extends StringValidator {
2023-03-29 17:21:20 +02:00
constructor() {
super(
"text",
"A longer piece of text. Uses an textArea instead of a textField",
"text",
true
)
2023-03-29 17:21:20 +02:00
}
}