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

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

8 lines
364 B
TypeScript
Raw Normal View History

import StringValidator from "./StringValidator"
export default class CollectionTimesValidator extends StringValidator{
constructor() {
super("points_in_time", "'Points in time' are points according to a fixed schedule, e.g. 'every monday at 10:00'. They are typically used for postbox collection times or times of mass at a place of worship")
}
}