UNPKG

gentics-ui-core

Version:

This is the common core framework for the Gentics CMS and Mesh UI, and other Angular applications.

10 lines (9 loc) 421 B
/** * This is a workaround for loading moment JS in TypeScript 3.2 and Angular 7. * This is based on https://github.com/rollup/rollup/issues/1267#issuecomment-446681320 */ import * as moment_ from 'moment'; /** The moment namespace and moment function. */ export declare const momentjs: any; /** The Moment class. This must be used as a type instead of momentjs.Moment. */ export declare type Moment = moment_.Moment;