11 lines
646 B
TypeScript
11 lines
646 B
TypeScript
declare namespace TcHmi.Functions.Beckhoff {
|
|
/**
|
|
* Converts Strings, Numbers (milliseconds since 1970) and JS Date Objects to strings containing the date and time.
|
|
* @param date Strings, Numbers (milliseconds since 1970) and JS Date Objects to be converted
|
|
* @param timeFormatLocale The locale of the return string.
|
|
* If not set this will use the time format locale of the current user.
|
|
* @param timeZone The timezone of the return string
|
|
*/
|
|
function ToDateTimeString(date: Date | any, timeFormatLocale?: string | null, timeZone?: string | undefined): string;
|
|
}
|
|
//# sourceMappingURL=ToDateTimeString.d.ts.map
|