declare namespace openfl.globalization { /** * The DateTimeNameStyle class enumerates constants that control the length of * the month names and weekday names that are used when formatting dates. Use * these constants for the `nameStyle` parameter of the DateTimeFormatter * `getMonthNames()` and `getWeekDayNames()` methods. * * The `LONG_ABBREVIATION` and `SHORT_ABBREVIATION` may be the same or * different depending on the operating system and browser settings. * */ export enum DateTimeNameStyle { FULL = "full", LONG_ABBREVIATION = "longAbbreviation", SHORT_ABBREVIATION = "shortAbbreviation", } } export default openfl.globalization.DateTimeNameStyle;