export class DatepickerOptions { label: any; placeholder: string; required: boolean; requiredError: string; constructor(config: any) { if (config) { this.label = config.label; this.placeholder = config.placeholder; this.required = config.required; this.requiredError = config.requiredError; } } }