tra-analysis/website/functions/node_modules/@firebase/util/dist/src/utf8.d.ts

12 lines
305 B
TypeScript
Raw Normal View History

2019-01-06 19:14:45 +00:00
/**
* @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;