# isObject
```ts
/**
 * 对象类型判断
 * @category Base
 */
export declare const isObject: <K = Object>(val: any) => val is K;

```
