mapcomplete/UI/InputElement/Validators/TextValidator.ts

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

13 lines
286 B
TypeScript
Raw Normal View History

import { Validator } from "../Validator"
2023-03-29 17:21:20 +02:00
export default class TextValidator extends Validator {
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
}
}