strong-tie/inbound-calls
0
1import { SetTokens } from './types';2/**3 * Finds character representations in str and convert all to4 * their respective characters.5 *6 * @param {string} str7 * @returns {string}8 */9export declare const strToChars: (str: string) => string;10/**11 * Turns class into tokens12 * reads str until it encounters a ] not preceeded by a \13 *14 * @param {string} str15 * @param {string} regexpStr16 * @returns {Array.<Array.<Object>, number>}17 */18export declare const tokenizeClass: (str: string, regexpStr: string) => [SetTokens, number];19 