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

```
