9 lines
324 B
TypeScript
9 lines
324 B
TypeScript
declare namespace TcHmi.Functions.Beckhoff {
|
|
/**
|
|
* Trims a string (from left or right side) to a specific length.
|
|
* @param value
|
|
* @param trimToLength
|
|
*/
|
|
function TrimToLength(value: string | null, trimToLength: number | string | null): string | null;
|
|
}
|
|
//# sourceMappingURL=TrimToLength.d.ts.map
|