UNPKG

416 BTypeScriptView Raw
1import { AccessTokenKey } from "../cache/AccessTokenKey";
2/**
3 * @hidden
4 */
5export declare class StringUtils {
6 /**
7 * Check if a string is empty
8 *
9 * @param str
10 */
11 static isEmpty(str: string): boolean;
12 /**
13 * Check if a string's value is a valid JSON object
14 *
15 * @param str
16 */
17 static validateAndParseJsonCacheKey(str: string): AccessTokenKey;
18}