mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-01-30 08:05:55 +00:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
/**
|
|
* @param {string} str
|
|
* @return {Array}
|
|
*/
|
|
export declare const stringToByteArray: (str: any) => any[];
|
|
/**
|
|
* Calculate length without actually converting; useful for doing cheaper validation.
|
|
* @param {string} str
|
|
* @return {number}
|
|
*/
|
|
export declare const stringLength: (str: any) => number;
|