mapcomplete/UI/InputElement/Validators/StringValidator.ts

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

8 lines
177 B
TypeScript
Raw Normal View History

import { Validator } from "../Validator"
2023-03-29 17:21:20 +02:00
export default class StringValidator extends Validator {
constructor() {
super("string", "A simple piece of text")
}
}