declare namespace openfl.globalization { /** * The DateTimeNameContext class enumerates constant values representing the * formatting context in which a month name or weekday name is used. These * constants are used for the context parameters for the DateTimeFormatter's * `getMonthNames()` and `getWeekDayNames()` methods. * * The context parameter only changes the results of those methods for certain * locales and operating systems. For most locales, the lists of month names * and weekday names do not differ by context. * */ export enum DateTimeNameContext { FORMAT = "format", STANDALONE = "standalone", } } export default openfl.globalization.DateTimeNameContext;