/** * Is the given argument of type String * * @example * ```ts * class Obj {} * * isObject({}); // -> true * isObject(new Obj()); // -> true * isObject('123'); // -> false * ``` * * @param x - Argument to test * @return - Whether the argument a plain object or not */ export default function isObject(x: unknown): x is object;