msal
Version:
Microsoft Authentication Library for js
19 lines (18 loc) • 416 B
TypeScript
import { AccessTokenKey } from "../cache/AccessTokenKey";
/**
* @hidden
*/
export declare class StringUtils {
/**
* Check if a string is empty
*
* @param str
*/
static isEmpty(str: string): boolean;
/**
* Check if a string's value is a valid JSON object
*
* @param str
*/
static validateAndParseJsonCacheKey(str: string): AccessTokenKey;
}