📄 json.d.ts
/home/palash/git/site/node_modules/@firebase/storage/dist/src/implementation/json.d.ts
Language: ts • Lines: 7
/**
 * Returns the Object resulting from parsing the given JSON, or null if the
 * given string does not represent a JSON object.
 */
export declare function jsonObjectOrNull(s: string): {
    [name: string]: unknown;
} | null;