material-dynamic-forms
Version:
¡Crea formularios dinámicos, potentes y configurables en Angular usando Material Design! 🚀
29 lines (28 loc) • 731 B
TypeScript
import { NativeDateAdapter } from '@angular/material/core';
export declare class AppDateAdapter extends NativeDateAdapter {
parse(value: any): Date | null;
format(date: Date, displayFormat: string): string;
private _to2digit;
}
export declare const APP_DATE_FORMATS: {
parse: {
dateInput: {
month: string;
year: string;
day: string;
};
};
display: {
dateInput: string;
monthYearLabel: string;
dateA11yLabel: {
year: string;
month: string;
day: string;
};
monthYearA11yLabel: {
year: string;
month: string;
};
};
};