UNPKG

@progress/kendo-date-math

Version:

Kendo UI typescript package exporting functions for Date manipulations

14 lines (13 loc) 472 B
/** * A function that returns all timezones which match the title of the zone. * * @param group - The fully qualified zone title. For example, Central Standard Time. * * @return - Returns the list of all matching timezone names. For example, `[America/Chicago, ...]`. * * @example * ```ts-no-run * zonesPerGroup('(GMT+01:00) Amsterdam, Berlin'); // ['Europe/Amsterdam', 'Europe/Berlin'...] * ``` */ export declare const zonesPerGroup: (group: string) => any[];