angular-material-components-zigzag-datetime-picker
Version:
Angular Material Datetime Picker
21 lines (20 loc) • 545 B
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { InjectionToken } from '@angular/core';
export type NgxMatDateFormats = {
parse: {
dateInput: any;
};
display: {
dateInput: any;
monthYearLabel: any;
dateA11yLabel: any;
monthYearA11yLabel: any;
};
};
export declare const NGX_MAT_DATE_FORMATS: InjectionToken<NgxMatDateFormats>;