Files
infineon_plc/Packages/Beckhoff.TwinCAT.HMI.Controls.14.4.1/runtimes/native1.12-tchmi/dist/TcHmiTrendLineChart/TcHmiTrendHelper.d.ts
m.heisig 2d11c43579 Added minimal functionality for Robot teaching
- Added minimal HMI
- Added possibility to open and close all chamber doors
2026-01-17 09:20:39 +01:00

23 lines
741 B
TypeScript

/**
* Check if the string is a Datetime
*/
export declare function isDatetime(date: string | null | undefined): date is string;
/**
* Check if the string is a keyWord (Latest, First)
*/
export declare function isKeyword(keyword: string | null): keyword is string;
/**
* Check if the string is a timespan
*/
export declare function isTimespan(timespan: string | null | undefined): timespan is string;
/**
* Convert milliseconds to iso 8601 string
* @param milliSec Milliseconds
*/
export declare function __milliSecToIso(milliSec: number): string;
/**
* Convert iso 8601 string to milliseconds
* @param t Iso 8601 string
*/
export declare function __isoToMilliSec(t: string): number;
//# sourceMappingURL=TcHmiTrendHelper.d.ts.map