Ontica/Empiria.Land.Intranet

View on GitHub
src/app/core/localization/common.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

export type Language = 'sp' | 'en';

export const DEFAULT_LANGUAGE: Language = 'sp';

export type DateFormat = 'DMY' | 'YMD' | 'MDY' | 'DM' | 'DMY HH:mm' | 'DM HH:mm';