funky-framadate-front/src/app/core/models/poll-options.model.ts

10 lines
231 B
TypeScript

import * as moment from 'moment';
export class PollOption {
constructor(public label: string, public url?: string, public subOptions?: PollOption[]) {}
public isDatePoll(): boolean {
return moment(this.label).isValid();
}
}