/**
 * An interface representing an object with string key and any value
 */
export type JSONObject = Record<PropertyKey, any>;
