/** @packageDocumentation * @module Common */ /** Enumeration of time formats. * @public */ export declare enum TimeFormat { /** Show Date and time using toISOString */ None = 0, /** Show Date using toLocaleDateString */ Short = 1, /** Show Date Time using toLocaleString */ Long = 2 } //# sourceMappingURL=TimeFormat.d.ts.map