## fhirPathIs() function

Determines if the typed value is the desired type.

**Signature:**

```typescript
export declare function fhirPathIs(typedValue: TypedValue, desiredType: string): boolean;
```

## Parameters

| Parameter   | Type                                | Description                                   |
| ----------- | ----------------------------------- | --------------------------------------------- |
| typedValue  | [TypedValue](/content/docs/sdk/core.typedvalue) | The typed value to check.                      |
| desiredType | string                              | The desired type name.                        |

**Returns:**

boolean

True if the typed value is of the desired type.
