ipsos-components
Version:
Material Design components for Angular
26 lines (20 loc) • 550 B
text/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 MatDateFormats = {
parse: {
dateInput: any
},
display: {
dateInput: any,
monthYearLabel: any,
dateA11yLabel: any,
monthYearA11yLabel: any,
}
};
export const MAT_DATE_FORMATS = new InjectionToken<MatDateFormats>('mat-date-formats');